Skip to content

Commit

Permalink
Format code according to conventions (#11936)
Browse files Browse the repository at this point in the history
Co-authored-by: QMK Bot <[email protected]>
  • Loading branch information
github-actions[bot] and qmk-bot authored Feb 17, 2021
1 parent fad6596 commit a5f63db
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tmk_core/common/action.c
Original file line number Diff line number Diff line change
Expand Up @@ -957,9 +957,7 @@ void tap_code_delay(uint8_t code, uint16_t delay) {
*
* \param code The basic keycode to tap. If `code` is `KC_CAPS`, the delay will be `TAP_HOLD_CAPS_DELAY`, otherwise `TAP_CODE_DELAY`, if defined.
*/
void tap_code(uint8_t code) {
tap_code_delay(code, code == KC_CAPS ? TAP_HOLD_CAPS_DELAY : TAP_CODE_DELAY);
}
void tap_code(uint8_t code) { tap_code_delay(code, code == KC_CAPS ? TAP_HOLD_CAPS_DELAY : TAP_CODE_DELAY); }

/** \brief Adds the given physically pressed modifiers and sends a keyboard report immediately.
*
Expand Down

0 comments on commit a5f63db

Please sign in to comment.