qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

commit 04b7a262e0f4fded365ff5cd2f366dfb7b044701
parent 232281946d1baab9db4da3f5f6da210792c4c184
Author: Pablo Martínez <58857054+elpekenin@users.noreply.github.com>
Date:   Fri,  9 Jun 2023 16:51:17 +0200

Fix typo (#21189)


Diffstat:
Mdocs/feature_layers.md | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/feature_layers.md b/docs/feature_layers.md @@ -155,7 +155,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { uint8_t current_layer = get_highest_layer(layer_state); // Check if we are within the range, if not quit - if (curent_layer > LAYER_CYCLE_END || current_layer < LAYER_CYCLE_START) { + if (current_layer > LAYER_CYCLE_END || current_layer < LAYER_CYCLE_START) { return false; }