diff --git a/src/fw/services/normal/alarms/alarm.h b/src/fw/services/normal/alarms/alarm.h index 2e5476f6..f2f3d95b 100644 --- a/src/fw/services/normal/alarms/alarm.h +++ b/src/fw/services/normal/alarms/alarm.h @@ -42,7 +42,7 @@ typedef int AlarmId; //! A unique ID that can be used to refer to each configure typedef enum AlarmKind { ALARM_KIND_EVERYDAY = 0, // Alarms of this type will happen each day ALARM_KIND_WEEKENDS, // Alarms of this type will happen Monday - Friday - ALARM_KIND_WEEKDAYS, // Alarms of this type happen Saturaday and Sunday + ALARM_KIND_WEEKDAYS, // Alarms of this type happen Saturday and Sunday ALARM_KIND_JUST_ONCE, // Alarms of this type will happen next time the specified time occurs ALARM_KIND_CUSTOM, // Alarms of this type happen on specified days } AlarmKind; diff --git a/tests/fw/test_alarm_common.h b/tests/fw/test_alarm_common.h index aaf9a8ae..db7f1f9b 100644 --- a/tests/fw/test_alarm_common.h +++ b/tests/fw/test_alarm_common.h @@ -114,7 +114,7 @@ static int s_current_day = 0; static const int s_thursday = 1426118400; // Friday March 13, 2015, 00:00 UTC static const int s_friday = 1426204800; -// Saturaday March 14, 2015, 00:00 UTC +// Saturday March 14, 2015, 00:00 UTC static const int s_saturday = 1426291200; // Sunday March 15, 2015, 00:00 UTC static const int s_sunday = 1426377600;