diff options
author | Carson McManus <carson.mcmanus1@gmail.com> | 2024-02-01 02:53:12 +0000 |
---|---|---|
committer | Carson McManus <carson.mcmanus1@gmail.com> | 2024-02-01 02:53:12 +0000 |
commit | a85e128fb4722f6d6260a1034fd853a0bf9a146f (patch) | |
tree | 7088ad4ac4e9660f9bdd4200320ab7891ab47282 | |
parent | move check for disable_indexing (diff) | |
download | miniserve-a85e128fb4722f6d6260a1034fd853a0bf9a146f.tar.gz miniserve-a85e128fb4722f6d6260a1034fd853a0bf9a146f.zip |
tweak doc comment
Diffstat (limited to '')
-rw-r--r-- | src/args.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/args.rs b/src/args.rs index 3124d96..e44f27b 100644 --- a/src/args.rs +++ b/src/args.rs @@ -297,8 +297,8 @@ pub struct CliArgs { /// Disable indexing /// - /// This will prevent miniserve from generating directory listings - /// and will return a 404 instead. + /// This will prevent directory listings from being generated + /// and return an error instead. #[arg(short = 'I', long, env = "MINISERVE_DISABLE_INDEXING")] pub disable_indexing: bool, } |