From c8ab3152bb7f11c8b079c022695c93bb0a96733b Mon Sep 17 00:00:00 2001 From: Tim Oram Date: Sun, 21 Aug 2022 06:42:09 -0230 Subject: [PATCH] Fix typo on KeyEventState::CAPS_LOCK docs (#707) --- src/event.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/event.rs b/src/event.rs index ab89575..d8d7d8b 100644 --- a/src/event.rs +++ b/src/event.rs @@ -623,7 +623,7 @@ bitflags! { const KEYPAD = 0b0000_0001; /// Caps Lock was enabled for this key event. /// - /// **Note:** this is set for the initial press of Num Lock itself. + /// **Note:** this is set for the initial press of Caps Lock itself. const CAPS_LOCK = 0b0000_1000; /// Num Lock was enabled for this key event. ///