From 278526ef75dec32e97cfbf6f18f4d299dd2c279e Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Thu, 29 Aug 2024 21:50:56 -0400 Subject: [PATCH] fix(cli): remove conflicting short flags in the `fuzz` subcommand --- cli/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/main.rs b/cli/src/main.rs index ce4aae95..81add51f 100644 --- a/cli/src/main.rs +++ b/cli/src/main.rs @@ -269,7 +269,7 @@ struct Fuzz { pub iterations: Option, #[arg(long, short, help = "Regex pattern to filter tests")] pub filter: Option, - #[arg(long, short, help = "Enable logging of graphs and input")] + #[arg(long, help = "Enable logging of graphs and input")] pub log_graphs: bool, #[arg(long, short, help = "Enable parser logging")] pub log: bool,