Skip to content

Commit

Permalink
feat: -R is now --rev, and breaking change diminished into void
Browse files Browse the repository at this point in the history
  • Loading branch information
loxygenK committed Dec 2, 2024
1 parent 0a192a8 commit 7947253
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bot/meigen/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ enum Command {
limit: u8,

/// 指定された場合、検索条件に合致する名言の中からランダムに選び出して出力します
#[clap(short = 'R', long)]
#[clap(short, long)]
#[clap(default_value_t = false)]
random: bool,

Expand All @@ -135,7 +135,7 @@ enum Command {
dir: SortDirection,

/// 降順にします。--dir desc のエイリアスです。
#[clap(short, long, alias = "rev")]
#[clap(short = 'R', long, alias = "rev")]
#[clap(default_value_t = false)]
reverse: bool,
},
Expand Down

0 comments on commit 7947253

Please sign in to comment.