diff options
author | huajin tong <137764712+thirdkeyword@users.noreply.github.com> | 2024-03-07 06:55:41 +0800 |
---|---|---|
committer | Christian Duerr <contact@christianduerr.com> | 2024-03-19 02:20:53 +0100 |
commit | 772a31e335eb7a7a6dc10da52f2f5b1d9dcaa2bb (patch) | |
tree | 207865be1e04402a68d6518ee00a1ba8d765be28 /alacritty_terminal | |
parent | e848cc850a1c242b9dd1439c66d3c407d1d95c12 (diff) | |
download | alacritty-772a31e335eb7a7a6dc10da52f2f5b1d9dcaa2bb.tar.gz alacritty-772a31e335eb7a7a6dc10da52f2f5b1d9dcaa2bb.zip |
Fix log typos
Diffstat (limited to 'alacritty_terminal')
-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); |