diff --git a/src/commands/mod.rs b/src/commands/mod.rs index 17610e490..cdbf36f8f 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -731,10 +731,11 @@ struct RebaseArgs { /// parent(s) #[arg(long, short)] revision: Option, - /// The revision(s) to rebase onto + /// The revision(s) to rebase onto (can be repeated) #[arg(long, short, required = true)] destination: Vec, - /// Allow revsets expanding to multiple commits in a single argument + /// Allow revsets expanding to multiple commits in a single argument (for + /// those options that can be repeated) #[arg(long, short = 'L')] allow_large_revsets: bool, }