From f42beec42eaab3045ca47d5187f5f210e1a5276a Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Sat, 2 Nov 2024 09:54:19 +0100 Subject: [PATCH] Fix typo in comment --- src/screen.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/screen.rs b/src/screen.rs index 71ece27a3..6e8ea23e9 100644 --- a/src/screen.rs +++ b/src/screen.rs @@ -759,7 +759,7 @@ fn r#move(&mut self, new_x: usize, new_y: usize) { (term.cursor_right.as_ref(), term.parm_right_cursor.as_ref()) }; - // Use the bulk ('multi') zelf.output for cursor movement if it is supported and it would be shorter + // Use the bulk ('multi') output for cursor movement if it is supported and it would be shorter // Note that this is required to avoid some visual glitches in iTerm (issue #1448). let use_multi = multi_str.is_some_and(|ms| !ms.as_bytes().is_empty()) && x_steps.abs_diff(0) * s.map_or(0, |s| s.as_bytes().len())