Skip to content

Commit

Permalink
refactor(args): update the value name for --strip
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Jun 15, 2021
1 parent de439be commit e8a3c35
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 @@ -48,7 +48,8 @@ pub struct Opt {
#[structopt(short, long)]
pub unreleased: bool,
/// Strips the given parts from the changelog.
#[structopt(short, long, possible_values = &["header", "footer", "all"])]
#[structopt(short, long, value_name = "PART",
possible_values = &["header", "footer", "all"])]
pub strip: Option<String>,
/// Sets the commit range to process.
pub range: Option<String>,
Expand Down

0 comments on commit e8a3c35

Please sign in to comment.