From a55bf1fd60edec535276b9b6569e04f2bdc00927 Mon Sep 17 00:00:00 2001 From: William Etheredge Date: Mon, 3 Oct 2022 22:19:25 -0500 Subject: [PATCH] Fix typo --- helix-term/src/commands/typed.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-term/src/commands/typed.rs b/helix-term/src/commands/typed.rs index 41846e3edd3a2..db8012717a41f 100644 --- a/helix-term/src/commands/typed.rs +++ b/helix-term/src/commands/typed.rs @@ -1042,7 +1042,7 @@ fn get_character_info( let codepoint: u32 = if char.is_ascii() { char.into() } else { - // Not ascii means it will be mutli-byte, so strip out the extra + // Not ascii means it will be multi-byte, so strip out the extra // bits that encode the length & mark continuation bytes let s = String::from(char);