diff options
Diffstat (limited to 'alacritty/src/input.rs')
-rw-r--r-- | alacritty/src/input.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty/src/input.rs b/alacritty/src/input.rs index f1a8e7d7..b1a25288 100644 --- a/alacritty/src/input.rs +++ b/alacritty/src/input.rs @@ -1127,7 +1127,7 @@ impl<T: EventListener, A: ActionContext<T>> Processor<T, A> { // We don't want the key without modifier, because it means something else most of // the time. However what we want is to manually lowercase the character to account - // for both small and capital latters on regular characters at the same time. + // for both small and capital letters on regular characters at the same time. let logical_key = if let Key::Character(ch) = key.logical_key.as_ref() { Key::Character(ch.to_lowercase().into()) } else { |