From 69269d8bf11c6af3ed61fb62db4c7d517c3e7784 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 14:47:44 -0500 Subject: [PATCH] spelling: happened Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/services/normal/alarms/alarm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fw/services/normal/alarms/alarm.c b/src/fw/services/normal/alarms/alarm.c index 22b80279..01a0c0e0 100644 --- a/src/fw/services/normal/alarms/alarm.c +++ b/src/fw/services/normal/alarms/alarm.c @@ -596,7 +596,7 @@ static int prv_get_day_for_just_once_alarm(int hour, int minute) { // The time is before or equal to the current time. Sechedule the alarm for tomorrow return (local_time.tm_wday + 1) % DAYS_PER_WEEK; } else { - // The time hasn't happend yet today. Schedule it for today + // The time hasn't happened yet today. Schedule it for today return local_time.tm_wday; } }