Fix typo for keep option (#212)

The current documentation for this option does not make sense and the
documentation for the keep_at_end differs. I made this change assuming
this is a typo.
This commit is contained in:
J.R. Garcia
2019-09-01 13:44:20 -05:00
committed by Roey Darwish Dror
parent f6d761d15c
commit 6dac7a18b2

View File

@@ -174,7 +174,7 @@ pub struct CommandLineArgs {
#[structopt(short = "v", long = "verbose")]
verbose: bool,
/// Prompt or a key before exiting
/// Prompt for a key before exiting
#[structopt(short = "k", long = "keep")]
keep_at_end: bool,
}