aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--helix-term/src/ui/editor.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs
index bbd99795..b0e6de3e 100644
--- a/helix-term/src/ui/editor.rs
+++ b/helix-term/src/ui/editor.rs
@@ -431,7 +431,7 @@ impl EditorView {
// it's used inside an iterator so the collect isn't needless:
// https://github.com/rust-lang/rust-clippy/issues/6164
- #[allow(clippy::clippy::needless_collect)]
+ #[allow(clippy::needless_collect)]
let cursors: Vec<_> = doc
.selection(view.id)
.iter()