aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIrevoire2021-10-03 03:40:33 +0000
committerGitHub2021-10-03 03:40:33 +0000
commitc4ae17dfd4d2c0eba2d3f7a6011a9b7c33bff114 (patch)
treeed7ff7e58c032df72f8bbf29b4c03fb511a6096d
parent7e958e1834f555724bb73db0091d66365abd63a3 (diff)
fix clippy warnings (#804)
-rw-r--r--helix-term/src/commands.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs
index 673d06af..ec76c81d 100644
--- a/helix-term/src/commands.rs
+++ b/helix-term/src/commands.rs
@@ -2346,10 +2346,10 @@ mod cmd {
pub static COMMANDS: Lazy<HashMap<&'static str, &'static TypableCommand>> = Lazy::new(|| {
TYPABLE_COMMAND_LIST
- .into_iter()
+ .iter()
.flat_map(|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()
});