fix(cli): remove duplicate short options from fuzz command (#3635)

- Remove short option from fuzz command edits option
- Remove short option from fuzz command iterations option
This commit is contained in:
Will Lillis 2024-09-15 04:04:12 -04:00 committed by GitHub
parent 7e3f572655
commit b0e8e50a19
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -243,9 +243,9 @@ struct Fuzz {
pub skip: Option<Vec<String>>,
#[arg(long, help = "Subdirectory to the language")]
pub subdir: Option<String>,
#[arg(long, short, help = "Maximum number of edits to perform per fuzz test")]
#[arg(long, help = "Maximum number of edits to perform per fuzz test")]
pub edits: Option<usize>,
#[arg(long, short, help = "Number of fuzzing iterations to run per test")]
#[arg(long, help = "Number of fuzzing iterations to run per test")]
pub iterations: Option<usize>,
#[arg(
long,