Jelajahi Sumber

Fix typo within debounce documentation (#10600)

shela 4 tahun lalu
induk
melakukan
4d59657b83
1 mengubah file dengan 2 tambahan dan 2 penghapusan
  1. 2 2
      docs/feature_debounce_type.md

+ 2 - 2
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
      * Defer algorithms are noise-resistant
      * Recommended naming conventions:
      * Recommended naming conventions:
         * ```sym_defer_*```
         * ```sym_defer_*```
-        * ```asym_defer_*_*```: key-down is using eager algorithm
+        * ```asym_defer_*_*```: key-down is using defer algorithm
-        * ```asym_*_defer_*```: key-up is using eager algorithm
+        * ```asym_*_defer_*```: key-up is using defer algorithm
 
 
 4) Global vs Per-Key vs Per-Row
 4) Global vs Per-Key vs Per-Row
    * Global - one timer for all keys. Any key change state affects global timer
    * Global - one timer for all keys. Any key change state affects global timer