Skip to content

Commit

Permalink
typos in help
Browse files Browse the repository at this point in the history
  • Loading branch information
wjwei-handsome committed Dec 22, 2023
1 parent 0e24299 commit 3efc587
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ struct Args {
#[arg(short, long, default_value_t = 20, value_parser=clap::value_parser!(u8).range(0..=100))]
quantity: u8,

/// Bool, If rainbow mode is enabled [default is false]
/// Bool, enabled rainbow color [default is false]
#[arg(short, long, default_value_t = false)]
rainbow: bool,

/// Bool, If random shape mode is enabled [default is false]
/// Bool, enabled random shape [default is false]
#[arg(short = 't', long = "randomtype", default_value_t = false)]
random: bool,

/// Bool, If you want to remove the Christmas tree [default is false]
/// Bool, remove the Christmas tree [default is false]
#[arg(short, long, default_value_t = false)]
notree: bool,
}
Expand Down

0 comments on commit 3efc587

Please sign in to comment.