~ruther/qmk_firmware

a5f63dbf93a19efc5c8e16f80eec79d988d3a1d1 — github-actions[bot] 4 years ago fad6596
Format code according to conventions (#11936)

Co-authored-by: QMK Bot <hello@qmk.fm>
1 files changed, 1 insertions(+), 3 deletions(-)

M tmk_core/common/action.c
M tmk_core/common/action.c => tmk_core/common/action.c +1 -3
@@ 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.
 *