From 1f8acd0818482b0486c8fedb207259a63caac0e5 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Fri, 23 Feb 2024 00:18:51 -0600 Subject: [PATCH] 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. --- level_1/fl_signal/c/signal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 1.8.3.1