Skip to content

Commit

Permalink
fix help output
Browse files Browse the repository at this point in the history
  • Loading branch information
the8472 committed Apr 5, 2017
1 parent 71b2e40 commit fc84b5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ fn scan_dirs(paths : Vec<PathBuf>, size: bool) -> std::io::Result<CntResult> {
fn process_args() -> std::result::Result<CntResult, CliError> {
let matches = App::new("fast file counting")
.version(crate_version!())
.arg(Arg::with_name("size").short("s").required(false).takes_value(false)).help("sum apparent length of plain files")
.arg(Arg::with_name("size").short("s").required(false).takes_value(false).help("sum apparent length of plain files"))
.arg(Arg::with_name("dirs").index(1).multiple(true).required(false).help("directories to traverse [default: cwd]"))
.get_matches();

Expand Down

0 comments on commit fc84b5b

Please sign in to comment.