From dd7ac99cd0bc5e28f3cb76f287912ce8bce40f79 Mon Sep 17 00:00:00 2001 From: scoobybejesus Date: Sun, 25 Aug 2019 20:30:11 -0400 Subject: [PATCH] tweaked -s opt description; resolves #2 --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index b665af0..c9c59cc 100644 --- a/src/main.rs +++ b/src/main.rs @@ -41,7 +41,7 @@ struct Cli { #[structopt(name = "output directory", short, long = "output", default_value = ".", parse(from_os_str))] output_dir_path: PathBuf, - /// When the 'accept' flag is set, this program will ultimately export CSV files to either the default or chosen 'output directory' unless this flag is set. + /// This will prevent the program from writing the CSV to file. This will be ignored if -a is not set (the wizard will always ask to output). #[structopt(name = "suppress reports", short, long = "suppress")] suppress_reports: bool,