From 9955491971a1d695f7c1e7896788cacae7008ecc Mon Sep 17 00:00:00 2001 From: Craig Disselkoen Date: Thu, 28 Sep 2017 11:48:59 -0700 Subject: [PATCH] Fix typo in keyswitch_state.h comments --- src/keyswitch_state.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/keyswitch_state.h b/src/keyswitch_state.h index 3cb55a91..f98a1650 100644 --- a/src/keyswitch_state.h +++ b/src/keyswitch_state.h @@ -31,7 +31,7 @@ /* keyToggledOff(): This is true if the key is newly not-pressed during this * scan cycle, i.e. is not pressed now but was in the previous scan cycle. * Use this for events which should fire exactly once per keypress, on a - * "key-down" event. + * "key-up" event. */ #define keyToggledOff(keyState) (keyWasPressed(keyState) && ! keyIsPressed(keyState))