diff options
author | Pavel Roskin <1317472+proski@users.noreply.github.com> | 2023-10-25 16:20:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-25 23:20:58 +0000 |
commit | 75eef3be9680dbe3300186b06e19eac7f9dfab4b (patch) | |
tree | e59127474f8bdaae5be26dc53d25c3c9ed86d379 /alacritty/src/input.rs | |
parent | 500b696ca8ed61c42f5954b10f1294e875d792ae (diff) | |
download | r-alacritty-75eef3be9680dbe3300186b06e19eac7f9dfab4b.tar.gz r-alacritty-75eef3be9680dbe3300186b06e19eac7f9dfab4b.tar.bz2 r-alacritty-75eef3be9680dbe3300186b06e19eac7f9dfab4b.zip |
Fix typos
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 { |