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

The `TAPPING_TERM_PER_KEY` code sample is missing a closing bracket.
This adds it.
master
Matthew Tse 2020-07-07 23:40:13 -04:00 committed by GitHub
parent 9ae15e8c79
commit 038a86a9b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

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