From 720222ba3999802c65b6ebb4cded4e107b923221 Mon Sep 17 00:00:00 2001 From: Truman Kilen Date: Sun, 17 Sep 2023 17:38:32 -0500 Subject: [PATCH] Fix error message --- repak/src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repak/src/error.rs b/repak/src/error.rs index bcb42b3..29a7642 100644 --- a/repak/src/error.rs +++ b/repak/src/error.rs @@ -62,7 +62,7 @@ pub enum Error { #[error("Prefix \"{prefix}\" does not match path \"{path}\"")] PrefixMismatch { prefix: String, path: String }, - #[error("Attempted to write to \"{0}\" which outside of output directory")] + #[error("Attempted to write to \"{0}\" which is outside of output directory")] WriteOutsideOutput(String), #[error("Output directory is not empty: \"{0}\"")]