aboutsummaryrefslogtreecommitdiff
path: root/docs/feature_wpm.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/feature_wpm.md')
-rw-r--r--docs/feature_wpm.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/feature_wpm.md b/docs/feature_wpm.md
index e2fac1ece..7e465e79b 100644
--- a/docs/feature_wpm.md
+++ b/docs/feature_wpm.md
@@ -35,7 +35,7 @@ bool wpm_keycode_user(uint16_t keycode) {
35 } else if (keycode > 0xFF) { 35 } else if (keycode > 0xFF) {
36 keycode = 0; 36 keycode = 0;
37 } 37 }
38 if ((keycode >= KC_A && keycode <= KC_0) || (keycode >= KC_TAB && keycode <= KC_SLASH)) { 38 if ((keycode >= KC_A && keycode <= KC_0) || (keycode >= KC_TAB && keycode <= KC_SLSH)) {
39 return true; 39 return true;
40 } 40 }
41 41