diff --git a/git-cliff/src/args.rs b/git-cliff/src/args.rs index 9c564b0b2e..55209dc179 100644 --- a/git-cliff/src/args.rs +++ b/git-cliff/src/args.rs @@ -17,7 +17,7 @@ use structopt::StructOpt; rename_all_env = "screaming-snake" )] pub struct Opt { - /// Activates the verbose mode + /// Increases the logging verbosity. #[structopt(short, long, parse(from_occurrences), alias = "debug")] pub verbose: u8, /// Sets the configuration file. @@ -52,5 +52,6 @@ pub struct Opt { possible_values = &["header", "footer", "all"])] pub strip: Option, /// Sets the commit range to process. + #[structopt(value_name = "RANGE")] pub range: Option, }