diff options
Diffstat (limited to 'docs/feature_combo.md')
-rw-r--r-- | docs/feature_combo.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/feature_combo.md b/docs/feature_combo.md index d98e6f2ac..b5c22bade 100644 --- a/docs/feature_combo.md +++ b/docs/feature_combo.md | |||
@@ -173,7 +173,7 @@ uint16_t get_combo_term(uint16_t index, combo_t *combo) { | |||
173 | // i.e. the exact array of keys you defined for the combo. | 173 | // i.e. the exact array of keys you defined for the combo. |
174 | // This can be useful if your combos have a common key and you want to apply the | 174 | // This can be useful if your combos have a common key and you want to apply the |
175 | // same combo term for all of them. | 175 | // same combo term for all of them. |
176 | if (combo->keys[0] == KC_ENTER) { // if first key in the array is KC_ENTER | 176 | if (combo->keys[0] == KC_ENT) { // if first key in the array is Enter |
177 | return 150; | 177 | return 150; |
178 | } | 178 | } |
179 | 179 | ||