aboutsummaryrefslogtreecommitdiffstats
path: root/src/archive.rs
diff options
context:
space:
mode:
authorboasting-squirrel <boasting.squirrel@gmail.com>2019-03-08 22:25:01 +0000
committerboasting-squirrel <boasting.squirrel@gmail.com>2019-03-08 22:25:01 +0000
commite04fc9675433f695b37104e57b28bd33d37ad5ab (patch)
treeb6c07fd6e209aceaa10023bcc2c684c918c76c11 /src/archive.rs
parentRefactored some code (diff)
downloadminiserve-e04fc9675433f695b37104e57b28bd33d37ad5ab.tar.gz
miniserve-e04fc9675433f695b37104e57b28bd33d37ad5ab.zip
Corrected comment
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 d9ca6e9..0f09005 100644
--- a/src/archive.rs
+++ b/src/archive.rs
@@ -10,7 +10,7 @@ use tempfile::tempdir;
/// Available compression methods
#[derive(Debug, Deserialize, Clone)]
pub enum CompressionMethod {
- /// ZIP
+ /// TAR GZ
#[serde(alias = "targz")]
TarGz,
}