From a1053f782086edda49d1b2ca7a2514894d4e289f Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Wed, 14 Apr 2021 11:59:39 +0200 Subject: [PATCH] :memo: --- zed/src/editor/buffer_view.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zed/src/editor/buffer_view.rs b/zed/src/editor/buffer_view.rs index 8affb9f3b9..83d580a69b 100644 --- a/zed/src/editor/buffer_view.rs +++ b/zed/src/editor/buffer_view.rs @@ -562,8 +562,8 @@ impl BufferView { } else if clipboard_selections.len() == 1 && clipboard_selections[0].is_entire_line { // If there was only one selection in the clipboard but it spanned the whole - // line, then paste it over and over into each of the current selections so that - // we can position it before the selections that are empty. + // line, then paste it into each of the current selections so that we can + // position it before those selections that are empty. self.multiline_paste( clipboard_text.chars().cycle(), clipboard_selections.iter().cycle(),