diff --git a/quantum/process_keycode/process_dynamic_tapping_term.c b/quantum/process_keycode/process_dynamic_tapping_term.c index 79409bdba77..b682f34da6d 100644 --- a/quantum/process_keycode/process_dynamic_tapping_term.c +++ b/quantum/process_keycode/process_dynamic_tapping_term.c @@ -22,14 +22,14 @@ #endif static void tapping_term_report(void) { -# ifdef SEND_STRING_ENABLE +#ifdef SEND_STRING_ENABLE const char *tapping_term_str = get_u16_str(g_tapping_term, ' '); // Skip padding spaces while (*tapping_term_str == ' ') { tapping_term_str++; } send_string(tapping_term_str); -# endif +#endif } bool process_dynamic_tapping_term(uint16_t keycode, keyrecord_t *record) { diff --git a/quantum/send_string/send_string.h b/quantum/send_string/send_string.h index 1e46f4c785a..4eb55b88dcc 100644 --- a/quantum/send_string/send_string.h +++ b/quantum/send_string/send_string.h @@ -46,7 +46,7 @@ extern const uint8_t ascii_to_keycode_lut[128]; /** * \brief Type out a string of ASCII characters. - * + * * This function simply calls `send_string_with_delay(string, 0)`. * * Most keycodes from the basic keycode range are also supported by way of a special sequence - see `send_string_keycodes.h`.