diff options
Diffstat (limited to 'docs/feature_advanced_keycodes.md')
-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 95c47355c..9edb9fceb 100644 --- a/docs/feature_advanced_keycodes.md +++ b/docs/feature_advanced_keycodes.md | |||
@@ -146,7 +146,7 @@ Additionally, hitting keys five times in a short period will lock that key. This | |||
146 | You can control the behavior of one shot keys by defining these in `config.h`: | 146 | You can control the behavior of one shot keys by defining these in `config.h`: |
147 | 147 | ||
148 | ```c | 148 | ```c |
149 | #define ONESHOT_TAP_TOGGLE 5 /* Tapping this number of times holds the key until tapped this number of times again. */ | 149 | #define ONESHOT_TAP_TOGGLE 5 /* Tapping this number of times holds the key until tapped once again. */ |
150 | #define ONESHOT_TIMEOUT 5000 /* Time (in ms) before the one shot key is released */ | 150 | #define ONESHOT_TIMEOUT 5000 /* Time (in ms) before the one shot key is released */ |
151 | ``` | 151 | ``` |
152 | 152 | ||