From afe3b453c8792857a0ced34e49acc5c4333b247d Mon Sep 17 00:00:00 2001 From: scoobybejesus Date: Tue, 31 Dec 2019 00:03:18 -0500 Subject: [PATCH] Updated CLI help descriptions. --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index cd7476b..cb9d4af 100644 --- a/src/main.rs +++ b/src/main.rs @@ -36,7 +36,7 @@ pub struct Cli { #[structopt(flatten)] opts: Options, - /// File to be imported. (Currently, the only supported date format is %m/%d/%y.) + /// File to be imported. (The default date format is %m/%d/%y. See -i flag and -d option for more formatting choices.) #[structopt(name = "file", parse(from_os_str))] file_to_import: Option, } @@ -45,7 +45,7 @@ pub struct Cli { pub struct Flags { /// User is instructing the program to skip the data entry wizard. - /// When set, program will error without required command-line args. + /// When set, default settings will be assumed if they are not indicated by flag or option. #[structopt(name = "accept args", short = "a", long = "accept")] accept_args: bool,