diff options
author | Albert Y <76888457+filterpaper@users.noreply.github.com> | 2023-04-24 02:56:45 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-23 12:56:45 -0600 |
commit | e1afcda1c05f1004f7a19597d06a73e0bb73150a (patch) | |
tree | a1ad609c9a5616ed8e416db405eb4a6e3e5ed7bd /docs | |
parent | ab4013a69ef35bf3c8d272f9f61f9a627fcdcec1 (diff) |
Update code example to match description (#20528)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/feature_advanced_keycodes.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/feature_advanced_keycodes.md b/docs/feature_advanced_keycodes.md index 3da5e7b32f..171243301d 100644 --- a/docs/feature_advanced_keycodes.md +++ b/docs/feature_advanced_keycodes.md @@ -91,7 +91,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { case KC_ESC: // Detect the activation of only Left Alt - if ((get_mods() & MOD_BIT(KC_LALT)) == MOD_BIT(KC_LALT)) { + if (get_mods() == MOD_BIT(KC_LALT)) { if (record->event.pressed) { // No need to register KC_LALT because it's already active. // The Alt modifier will apply on this KC_TAB. |