diff options
author | shela <shelaf@users.noreply.github.com> | 2020-10-13 09:46:16 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-13 01:46:16 +0100 |
commit | 4d59657b8352e028000c00c21011c5e76b0e3c8e (patch) | |
tree | d48fb6b426de43e9badfe669acf021cfd4313b5f /docs | |
parent | d46b8ef67c91f1794c35a1a91ff9fc7dcba6b009 (diff) |
Fix typo within debounce documentation (#10600)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/feature_debounce_type.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/feature_debounce_type.md b/docs/feature_debounce_type.md index 83ebafe60e..966e75acc1 100644 --- a/docs/feature_debounce_type.md +++ b/docs/feature_debounce_type.md @@ -76,8 +76,8 @@ susceptible to noise, you must choose a debounce method that will also mitigate * Defer algorithms are noise-resistant * Recommended naming conventions: * ```sym_defer_*``` - * ```asym_defer_*_*```: key-down is using eager algorithm - * ```asym_*_defer_*```: key-up is using eager algorithm + * ```asym_defer_*_*```: key-down is using defer algorithm + * ```asym_*_defer_*```: key-up is using defer algorithm 4) Global vs Per-Key vs Per-Row * Global - one timer for all keys. Any key change state affects global timer |