Skip to content

Commit 4d59657

Browse files
authored
Fix typo within debounce documentation (#10600)
1 parent d46b8ef commit 4d59657

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/feature_debounce_type.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ susceptible to noise, you must choose a debounce method that will also mitigate
7676
* Defer algorithms are noise-resistant
7777
* Recommended naming conventions:
7878
* ```sym_defer_*```
79-
* ```asym_defer_*_*```: key-down is using eager algorithm
80-
* ```asym_*_defer_*```: key-up is using eager algorithm
79+
* ```asym_defer_*_*```: key-down is using defer algorithm
80+
* ```asym_*_defer_*```: key-up is using defer algorithm
8181

8282
4) Global vs Per-Key vs Per-Row
8383
* Global - one timer for all keys. Any key change state affects global timer

0 commit comments

Comments
 (0)