From bc2c2393d7ee5fd6c8de749921aba5b596e8f953 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 15:35:03 -0500 Subject: [PATCH] spelling: regular Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/services/common/regular_timer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fw/services/common/regular_timer.h b/src/fw/services/common/regular_timer.h index 737f9e95..a4768fda 100644 --- a/src/fw/services/common/regular_timer.h +++ b/src/fw/services/common/regular_timer.h @@ -48,7 +48,7 @@ void regular_timer_add_multiminute_callback(RegularTimerInfo* cb, uint16_t minut //! Remove a callback already registered for either seconds or minutes. //! WARNING: If you call this from your callback procedure, you are NOT allowed to free up the memory used for -//! the RegulartTimerInfo structure until after your callback exits! +//! the RegularTimerInfo structure until after your callback exits! //! @return true iff the timer was successfully stopped (false may indicate no timer was //! scheduled at all or the cb is currently executing) bool regular_timer_remove_callback(RegularTimerInfo* cb);