diff options
author | Matthew Tse <1315979+m-tse@users.noreply.github.com> | 2020-07-07 23:40:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-08 13:40:13 +1000 |
commit | 038a86a9b8bcdcc2db03240dec7d730569ff63bf (patch) | |
tree | 31dea7116765d62a3d3c246a1c59c91bcade9a72 /docs | |
parent | 9ae15e8c79375f2ca2f315d8b24e8c51a6855039 (diff) |
Add missing bracket for Tap-Hold code sample (#9675)
The `TAPPING_TERM_PER_KEY` code sample is missing a closing bracket.
This adds it.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/tap_hold.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/tap_hold.md b/docs/tap_hold.md index 2dc57f03c2..589ec31816 100644 --- a/docs/tap_hold.md +++ b/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; + } } ``` |