Fix log typos

This commit is contained in:
huajin tong 2024-03-07 06:55:41 +08:00 committed by GitHub
parent f7811548ae
commit 6dbb3ff900
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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);