diff options
author | boasting-squirrel <boasting.squirrel@gmail.com> | 2019-03-13 23:08:19 +0000 |
---|---|---|
committer | boasting-squirrel <boasting.squirrel@gmail.com> | 2019-03-13 23:08:19 +0000 |
commit | e7fadb7d631824841fa61cb2373c7e260e3b7b6a (patch) | |
tree | 991cc1810de7d5476fd43370ee00eb4ef02240b1 | |
parent | Switched to standard Rust logging system (diff) | |
download | miniserve-e7fadb7d631824841fa61cb2373c7e260e3b7b6a.tar.gz miniserve-e7fadb7d631824841fa61cb2373c7e260e3b7b6a.zip |
Improved grammar of TarBuildingError error message
-rw-r--r-- | src/archive.rs | 2 |
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 ), }, |