From 3848058472e65b7f8d092c44d61091a22a78bfa4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20Hrastnik?= Date: Tue, 2 Jun 2020 10:49:28 +0900 Subject: [PATCH] clippy lint --- helix-core/src/graphemes.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-core/src/graphemes.rs b/helix-core/src/graphemes.rs index ec4e9d243..42e27b905 100644 --- a/helix-core/src/graphemes.rs +++ b/helix-core/src/graphemes.rs @@ -165,7 +165,7 @@ impl<'a> RopeGraphemes<'a> { let first_chunk = chunks.next().unwrap_or(""); RopeGraphemes { text: *slice, - chunks: chunks, + chunks, cur_chunk: first_chunk, cur_chunk_start: 0, cursor: GraphemeCursor::new(0, slice.len_bytes(), true),