Skip to content

Commit

Permalink
Fix typo (#21189)
Browse files Browse the repository at this point in the history
  • Loading branch information
elpekenin committed Jun 9, 2023
1 parent 2322819 commit 04b7a26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/feature_layers.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 04b7a26

Please sign in to comment.