aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhuajin tong <137764712+thirdkeyword@users.noreply.github.com>2024-03-07 06:55:41 +0800
committerJosh Rahm <rahm@google.com>2024-08-14 15:41:13 -0600
commit8bf2df79cd4afcaf3b1a44f543c14cfc90ec335c (patch)
treed06c975ddd3fac1e3b2951a356538bbc89da7bb2
parent35446043d56e9513a162582f0c6a0254ab1dabca (diff)
downloadr-alacritty-8bf2df79cd4afcaf3b1a44f543c14cfc90ec335c.tar.gz
r-alacritty-8bf2df79cd4afcaf3b1a44f543c14cfc90ec335c.tar.bz2
r-alacritty-8bf2df79cd4afcaf3b1a44f543c14cfc90ec335c.zip
Fix log typos
-rw-r--r--CHANGELOG.md2
-rw-r--r--alacritty_terminal/src/term/mod.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0f19c399..f5361861 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -487,7 +487,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Performance of scrolling regions with offset from the bottom
- Extra mouse buttons are no longer ignored on Wayland
- Numpad arrow keys are now properly recognized on Wayland
-- Compilation when targetting aarch64-apple-darwin
+- Compilation when targeting aarch64-apple-darwin
- Window not being completely opaque on Windows
- Window being always on top during alt-tab on Windows
- Cursor position not reported to apps when mouse is moved with button held outside of window
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);