Skip to content

Commit

Permalink
Format code according to conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
qmk-bot committed Feb 16, 2021
1 parent 3345ce2 commit 5eba824
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 @@ -955,9 +955,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 5eba824

Please sign in to comment.