aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/keymap.rs
diff options
context:
space:
mode:
authorNathan Vegdahl2021-07-29 19:41:24 +0000
committerBenoƮt Cortier2021-07-29 20:47:18 +0000
commit3fda350494449bf5909a0b47f9e2f593fbe615ad (patch)
tree00297129d7f6560ce9f1e8016e8777f05bcadc9f /helix-term/src/keymap.rs
parent05d20e196f81c8b71c2aecaf46f5d443d6b6b582 (diff)
Fixes for new clippy lints in Rust 1.54.
Diffstat (limited to 'helix-term/src/keymap.rs')
-rw-r--r--helix-term/src/keymap.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs
index 95479340..053b92e6 100644
--- a/helix-term/src/keymap.rs
+++ b/helix-term/src/keymap.rs
@@ -284,7 +284,7 @@ impl Deref for Keymap {
type Target = KeyTrieNode;
fn deref(&self) -> &Self::Target {
- &self.root.node().unwrap()
+ self.root.node().unwrap()
}
}