aboutsummaryrefslogtreecommitdiffstats
path: root/src/archive.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/archive.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/archive.rs b/src/archive.rs
index e1460b9..b71d50f 100644
--- a/src/archive.rs
+++ b/src/archive.rs
@@ -98,7 +98,7 @@ fn tar(src_dir: String, inner_folder: String) -> Result<Vec<u8>, errors::Compres
tar_builder.append_dir_all(inner_folder, &src_dir).context(
errors::CompressionErrorKind::TarBuildingError {
message: format!(
- "failed to append the content of {} in the TAR archive",
+ "failed to append the content of {} to the TAR archive",
&src_dir
),
},