From 42951417036b796d85b98aadf928ae4dbbaebbd1 Mon Sep 17 00:00:00 2001 From: nanahi <130121847+na-na-hi@users.noreply.github.com> Date: Sat, 7 Sep 2024 07:39:05 -0400 Subject: [PATCH] input/keycodes: fix typo --- input/keycodes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/input/keycodes.h b/input/keycodes.h index 6e796015b5..93633e69de 100644 --- a/input/keycodes.h +++ b/input/keycodes.h @@ -226,12 +226,12 @@ // Emit a command even on key-up (normally key-up is ignored). This means by // default they binding will be triggered on key-up instead of key-down. -// This is a fixed part of the keycode, not a modifier than can change. +// This is a fixed part of the keycode, not a modifier that can change. #define MP_KEY_EMIT_ON_UP (1u<<22) // Use this when the key shouldn't be auto-repeated (like mouse buttons) // Also means both key-down key-up events produce emit bound commands. -// This is a fixed part of the keycode, not a modifier than can change. +// This is a fixed part of the keycode, not a modifier that can change. #define MP_NO_REPEAT_KEY (1u<<23) /* Modifiers added to individual keys */