diff options
author | pebbleKite <pebbleKite@users.noreply.github.com> | 2018-11-11 13:53:37 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-11 13:53:37 +0000 |
commit | fc466891148b7340d9588ccbd2bb74db957e3068 (patch) | |
tree | d27f91083c56c43522fa41abaf95a23eb8139eef | |
parent | Use same renderer when skipping symlinks and not (diff) | |
download | miniserve-fc466891148b7340d9588ccbd2bb74db957e3068.tar.gz miniserve-fc466891148b7340d9588ccbd2bb74db957e3068.zip |
Fix double "symbolic" typo
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 688958c..5806cab 100644 --- a/src/main.rs +++ b/src/main.rs @@ -137,7 +137,7 @@ pub fn parse_args() -> MiniserveConfig { Arg::with_name("no-symlinks") .short("P") .long("no-symlinks") - .help("Do not follow symbolic symbolic links"), + .help("Do not follow symbolic links"), ).get_matches(); let verbose = matches.is_present("verbose"); |