aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSven-Hendrik Haase <svenstaro@gmail.com>2024-06-26 23:32:02 +0000
committerGitHub <noreply@github.com>2024-06-26 23:32:02 +0000
commit66f400ca378a412a7872987d2b8912d8c526bfe3 (patch)
treed1ff017eeb6ecc8407d35e388c53078acd3c735c /src
parentMerge pull request #1434 from svenstaro/fix-ci (diff)
parentFix typos in CLI (diff)
downloadminiserve-66f400ca378a412a7872987d2b8912d8c526bfe3.tar.gz
miniserve-66f400ca378a412a7872987d2b8912d8c526bfe3.zip
Merge pull request #1436 from kaplanz/patch-1
Fix typos in CLI
Diffstat (limited to 'src')
-rw-r--r--src/args.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/args.rs b/src/args.rs
index 20be079..dd09f65 100644
--- a/src/args.rs
+++ b/src/args.rs
@@ -162,7 +162,7 @@ pub struct CliArgs {
/// The provided path is not a physical file system path. Instead, it's relative to the serve
/// dir. For instance, if the serve dir is '/home/hello', set this to '/upload' to allow
/// uploading to '/home/hello/upload'.
- /// When specified via environment variable, a path always neesd to the specified.
+ /// When specified via environment variable, a path always needs to be specified.
#[arg(short = 'u', long = "upload-files", value_hint = ValueHint::FilePath, num_args(0..=1), value_delimiter(','), env = "MINISERVE_ALLOWED_UPLOAD_DIR")]
pub allowed_upload_dir: Option<Vec<PathBuf>>,