From 5661b6b50843d2386a63c1243ee2c19050b00a40 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Mon, 5 Jun 2023 12:49:26 -0500 Subject: [PATCH] style: Remove unused mut --- clap_builder/src/builder/command.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clap_builder/src/builder/command.rs b/clap_builder/src/builder/command.rs index 603942af..62930766 100644 --- a/clap_builder/src/builder/command.rs +++ b/clap_builder/src/builder/command.rs @@ -4030,7 +4030,7 @@ impl Command { } .to_owned(); - for mut sc in &mut self.subcommands { + for sc in &mut self.subcommands { debug!("Command::_build_bin_names:iter: bin_name set..."); if sc.usage_name.is_none() {