From 6dac7a18b29d0915819b72680d53be2a89d9d480 Mon Sep 17 00:00:00 2001 From: "J.R. Garcia" Date: Sun, 1 Sep 2019 13:44:20 -0500 Subject: [PATCH] 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. --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 4fced28f..c4d3f5cf 100644 --- a/src/config.rs +++ b/src/config.rs @@ -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, }