fix help text to be consistent

This commit is contained in:
mykola2312 2024-07-17 10:18:44 +03:00
parent de0e790962
commit b41de4a49e
2 changed files with 2 additions and 2 deletions

View file

@ -136,7 +136,7 @@ impl ClientConfig {
println!(" -u, --upload\t\t\t\tSets the client to upload mode, Ignores all previous download flags");
println!(" -d, --download\t\t\tSet the client to download mode, Invalidates all previous upload flags");
println!(" -rd, --receive-directory <DIRECTORY>\tSet the directory to receive files when in Download mode (default: current working directory)");
println!(" --dont-clean\t\t\t\tWill prevent client from deleting files after receiving errors.");
println!(" --dont-clean\t\t\t\tPrevent client from deleting files after receiving errors");
println!(" -h, --help\t\t\t\tPrint help information");
process::exit(0);
}

View file

@ -134,7 +134,7 @@ impl Config {
println!(" -r, --read-only\t\t\tRefuse all write requests, making the server read-only (default: false)");
println!(" --duplicate-packets <NUM>\t\tDuplicate all packets sent from the server (default: 0)");
println!(" --overwrite\t\t\t\tOverwrite existing files (default: false)");
println!(" --dont-clean\t\t\t\tWill prevent daemon from deleting files after receiving errors.");
println!(" --dont-clean\t\t\t\tPrevent daemon from deleting files after receiving errors");
println!(" -h, --help\t\t\t\tPrint help information");
process::exit(0);
}