fix clippy warnings (#804)

pull/803/head^2
Irevoire 2021-10-03 05:40:33 +02:00 committed by GitHub
parent 7e958e1834
commit c4ae17dfd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -2346,10 +2346,10 @@ mod cmd {
pub static COMMANDS: Lazy<HashMap<&'static str, &'static TypableCommand>> = Lazy::new(|| { pub static COMMANDS: Lazy<HashMap<&'static str, &'static TypableCommand>> = Lazy::new(|| {
TYPABLE_COMMAND_LIST TYPABLE_COMMAND_LIST
.into_iter() .iter()
.flat_map(|cmd| { .flat_map(|cmd| {
std::iter::once((cmd.name, cmd)) std::iter::once((cmd.name, cmd))
.chain(cmd.aliases.into_iter().map(move |&alias| (alias, cmd))) .chain(cmd.aliases.iter().map(move |&alias| (alias, cmd)))
}) })
.collect() .collect()
}); });