From 1cceb1206d3e272e6e1f40ae8bdf5f46b311f1d5 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 13:22:49 -0500 Subject: [PATCH] spelling: correct Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/services/normal/activity/workout_service.h | 2 +- tests/fw/services/health/test_health.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/fw/services/normal/activity/workout_service.h b/src/fw/services/normal/activity/workout_service.h index 37e1cda6..797bb8dd 100644 --- a/src/fw/services/normal/activity/workout_service.h +++ b/src/fw/services/normal/activity/workout_service.h @@ -59,7 +59,7 @@ bool workout_service_is_workout_type_supported(ActivitySessionType type); //! All workouts must eventually get stopped bool workout_service_start_workout(ActivitySessionType type); -//! Pause / unpause the currect workout +//! Pause / unpause the correct workout bool workout_service_pause_workout(bool should_be_paused); //! Stops the current workout. Resumes automatic activity session detection diff --git a/tests/fw/services/health/test_health.c b/tests/fw/services/health/test_health.c index 2d90d9b9..57b2366c 100644 --- a/tests/fw/services/health/test_health.c +++ b/tests/fw/services/health/test_health.c @@ -500,7 +500,7 @@ void test_health__range_to_day_id_clamps_values(void) { } void test_health__sum_full_days(void) { - // use values structured as binary mask so we can detect if we sum up currect days + // use values structured as binary mask so we can detect if we sum up correct days s_sys_activity_get_metric_values.out.history[0] = 1000; s_sys_activity_get_metric_values.out.history[1] = 2000; s_sys_activity_get_metric_values.out.history[2] = 4000; @@ -606,7 +606,7 @@ void test_health__process_range(void) { } void test_health__sum_fraction_days(void) { - // use values structured as binary mask so we can detect if we sum up currect days + // use values structured as binary mask so we can detect if we sum up correct days s_sys_activity_get_metric_values.out.history[0] = 1000; s_sys_activity_get_metric_values.out.history[1] = 2000; s_sys_activity_get_metric_values.out.history[2] = 4000;