From: Kevin Day Date: Fri, 23 Feb 2024 06:18:51 +0000 (-0600) Subject: Cleanup: Replace '->' with '.' in documentation comment. X-Git-Tag: 0.6.9~14 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=1f8acd0818482b0486c8fedb207259a63caac0e5;p=fll Cleanup: Replace '->' with '.' in documentation comment. There should be no pointer syntax used in documentation comments to keep the documentation agnostic to pointer/non-pointer. --- diff --git a/level_1/fl_signal/c/signal.h b/level_1/fl_signal/c/signal.h index ed79760..8cbf300 100644 --- a/level_1/fl_signal/c/signal.h +++ b/level_1/fl_signal/c/signal.h @@ -34,7 +34,7 @@ extern "C" { * * This is intended to be explicitly use for the interrupt() callback defined in f_state_t. * - * This checks all interrupts provided in state->data.interrupts and if a signal is found, store that signal in state->data.trigger and returns F_interrupt (with error bit set). + * This checks all interrupts provided in state->data.interrupts and if a signal is found, store that signal in state.data.trigger and returns F_interrupt (with error bit set). * If state->data.signal.id is NULL, then F_enable_not is returned. * * @param state