Browse Source

Add missing bracket for Tap-Hold code sample (#9675)

The `TAPPING_TERM_PER_KEY` code sample is missing a closing bracket.
This adds it.
Matthew Tse 5 years ago
parent
commit
038a86a9b8
1 changed files with 1 additions and 0 deletions
  1. 1 0
      docs/tap_hold.md

+ 1 - 0
docs/tap_hold.md

@@ -32,6 +32,7 @@ uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {
             return 130;
         default:
             return TAPPING_TERM;
+    }
 }
 ```