Update help text

This commit is contained in:
sharkdp 2017-09-09 14:51:32 +02:00 committed by David Peter
parent c55b255a3e
commit f92dfb86bb
1 changed files with 2 additions and 2 deletions

View File

@ -360,11 +360,11 @@ fn main() {
.long("threads") .long("threads")
.short("j") .short("j")
.takes_value(true) .takes_value(true)
.help("the number of threads to use")) .help("The number of threads used for searching"))
.arg(Arg::with_name("max-buffer-time") .arg(Arg::with_name("max-buffer-time")
.long("max-buffer-time") .long("max-buffer-time")
.takes_value(true) .takes_value(true)
.help("the time to buffer in milliseconds before streaming to the console") .help("the time (in ms) to buffer, before streaming to the console")
.hidden(true)) .hidden(true))
.arg(Arg::with_name("pattern") .arg(Arg::with_name("pattern")
.help("the search pattern, a regular expression (optional)")) .help("the search pattern, a regular expression (optional)"))