diff options
author | Sven-Hendrik Haase <svenstaro@gmail.com> | 2020-05-14 23:22:53 +0000 |
---|---|---|
committer | Sven-Hendrik Haase <svenstaro@gmail.com> | 2020-05-14 23:22:53 +0000 |
commit | 1b414c737e8bd0849a1788c6546d1378a8553a7f (patch) | |
tree | a9c1588d74653eae5b4f33fc8be62b0b6cd5c3e0 /src | |
parent | Merge pull request #297 from marawan31/add-zip-download (diff) | |
download | miniserve-1b414c737e8bd0849a1788c6546d1378a8553a7f.tar.gz miniserve-1b414c737e8bd0849a1788c6546d1378a8553a7f.zip |
Fix arg formatting
Diffstat (limited to 'src')
-rw-r--r-- | src/args.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/args.rs b/src/args.rs index ea4e90f..daf32c9 100644 --- a/src/args.rs +++ b/src/args.rs @@ -89,7 +89,8 @@ struct CLIArgs { enable_tar: bool, /// Enable zip archive generation - /// Zipping large directories can result in out-of-memory exception + /// + /// WARNING: Zipping large directories can result in out-of-memory exception /// because zip generation is done in memory and cannot be sent on the fly #[structopt(short = "z", long = "enable-zip")] enable_zip: bool, |