From a03f7e9b48bbd715f99e496bcccf53b274a8e3e8 Mon Sep 17 00:00:00 2001 From: Junkui Zhang <364772080@qq.com> Date: Wed, 27 Aug 2025 02:39:20 +0800 Subject: [PATCH] typo --- crates/settings/src/keymap_file.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/settings/src/keymap_file.rs b/crates/settings/src/keymap_file.rs index b9d0bad0a2..0e8303c4c1 100644 --- a/crates/settings/src/keymap_file.rs +++ b/crates/settings/src/keymap_file.rs @@ -940,7 +940,7 @@ impl<'a> KeybindUpdateTarget<'a> { let mut keystrokes = String::with_capacity(self.keystrokes.len() * 8); for keystroke in self.keystrokes { // The reason use `keystroke.unparse()` instead of `keystroke.inner.unparse()` - // here is that, we want the user to use `ctrl-shift-4` instread of `ctrl-$` + // here is that, we want the user to use `ctrl-shift-4` instead of `ctrl-$` // by default on Windows. keystrokes.push_str(&keystroke.unparse()); keystrokes.push(' ');