~ruther/qmk_firmware

038a86a9b8bcdcc2db03240dec7d730569ff63bf — Matthew Tse 5 years ago 9ae15e8
Add missing bracket for Tap-Hold code sample (#9675)

The `TAPPING_TERM_PER_KEY` code sample is missing a closing bracket.
This adds it.
1 files changed, 1 insertions(+), 0 deletions(-)

M docs/tap_hold.md
M docs/tap_hold.md => docs/tap_hold.md +1 -0
@@ 32,6 32,7 @@ uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {
            return 130;
        default:
            return TAPPING_TERM;
    }
}
```