Skip to content

Commit

Permalink
refactor(args): update value names and description
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Jun 16, 2021
1 parent 45dccf7 commit c697b17
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion git-cliff/src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -52,5 +52,6 @@ pub struct Opt {
possible_values = &["header", "footer", "all"])]
pub strip: Option<String>,
/// Sets the commit range to process.
#[structopt(value_name = "RANGE")]
pub range: Option<String>,
}

0 comments on commit c697b17

Please sign in to comment.