style: Remove unused mut

This commit is contained in:
Ed Page 2023-06-05 12:49:26 -05:00
parent e7729d1282
commit 5661b6b508

View file

@ -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() {