Skip to content

Commit

Permalink
style: Remove unused mut
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Jun 5, 2023
1 parent e7729d1 commit 5661b6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clap_builder/src/builder/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 5661b6b

Please sign in to comment.