diff options
author | huajin tong <137764712+thirdkeyword@users.noreply.github.com> | 2024-03-07 06:55:41 +0800 |
---|---|---|
committer | Josh Rahm <rahm@google.com> | 2024-08-14 15:41:13 -0600 |
commit | 8bf2df79cd4afcaf3b1a44f543c14cfc90ec335c (patch) | |
tree | d06c975ddd3fac1e3b2951a356538bbc89da7bb2 /alacritty_terminal/src/term/mod.rs | |
parent | 35446043d56e9513a162582f0c6a0254ab1dabca (diff) | |
download | r-alacritty-8bf2df79cd4afcaf3b1a44f543c14cfc90ec335c.tar.gz r-alacritty-8bf2df79cd4afcaf3b1a44f543c14cfc90ec335c.tar.bz2 r-alacritty-8bf2df79cd4afcaf3b1a44f543c14cfc90ec335c.zip |
Fix log typos
Diffstat (limited to 'alacritty_terminal/src/term/mod.rs')
-rw-r--r-- | alacritty_terminal/src/term/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty_terminal/src/term/mod.rs b/alacritty_terminal/src/term/mod.rs index ec79886c..2ed6d7c9 100644 --- a/alacritty_terminal/src/term/mod.rs +++ b/alacritty_terminal/src/term/mod.rs @@ -1305,7 +1305,7 @@ impl<T: EventListener> Handler for Term<T> { return; } - trace!("Attemting to pop {to_pop} keyboard modes from the stack"); + trace!("Attempting to pop {to_pop} keyboard modes from the stack"); let new_len = self.keyboard_mode_stack.len().saturating_sub(to_pop as usize); self.keyboard_mode_stack.truncate(new_len); |