From 68ca07b77ccc7ac358cdde0625b2741379fc2ced Mon Sep 17 00:00:00 2001 From: kyu08 <49891479+kyu08@users.noreply.github.com> Date: Fri, 15 Mar 2024 20:46:06 +0900 Subject: [PATCH] fix typo --- src/input/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/mod.rs b/src/input/mod.rs index 2ead41b..025d7b5 100644 --- a/src/input/mod.rs +++ b/src/input/mod.rs @@ -109,7 +109,7 @@ pub struct Input { pub ctrl: bool, /// Alt modifier key. `true` means Alt key was pressed. pub alt: bool, - /// Shift modifier key. `true` means Alt key was pressed. + /// Shift modifier key. `true` means Shift key was pressed. pub shift: bool, }