fixed missing newline after emitter docstring

This commit is contained in:
Louis Heredero 2023-08-22 20:59:47 +02:00
parent 6ddda29300
commit 1b95094b86

View File

@ -241,7 +241,7 @@ def main():
emit_dec += " * Emit the {event} event\n" emit_dec += " * Emit the {event} event\n"
emit_dec += " * @param me the {filename} itself\n" emit_dec += " * @param me the {filename} itself\n"
emit_dec += " * @param t time to wait in ms before triggering event\n" emit_dec += " * @param t time to wait in ms before triggering event\n"
emit_dec += " */" emit_dec += " */\n"
emit_dec += "void {filename}_emit{Event}({filename}* me, uint16_t t);" emit_dec += "void {filename}_emit{Event}({filename}* me, uint16_t t);"
emit_dec = emit_dec.replace("{filename}", fn_uc) emit_dec = emit_dec.replace("{filename}", fn_uc)