From e5f3fcf2e4bb73b9c57a30e1ff139cf46ba402d1 Mon Sep 17 00:00:00 2001 From: Jason Date: Thu, 19 Oct 2023 19:35:44 +0800 Subject: [PATCH] chore: update error doc --- crates/packager/src/error.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/packager/src/error.rs b/crates/packager/src/error.rs index 5d6ef513..3d537742 100644 --- a/crates/packager/src/error.rs +++ b/crates/packager/src/error.rs @@ -232,8 +232,8 @@ pub enum Error { /// Failed to extract external binary filename #[error("Failed to extract filename from {0}")] FailedToExtractFilename(PathBuf), - /// Failed to remove extra attributes from app bundle - #[error("Failed to remove extended file attributes from app bundle: {0}")] + /// Failed to remove extended attributes from app bundle + #[error("Failed to remove extended attributes from app bundle: {0}")] #[cfg(target_os = "macos")] FailedToRemoveExtendedAttributes(std::io::Error), }