diff --git a/src/fw/services/normal/activity/activity_sessions.c b/src/fw/services/normal/activity/activity_sessions.c index 4fdd375f..0ebc1d2a 100644 --- a/src/fw/services/normal/activity/activity_sessions.c +++ b/src/fw/services/normal/activity/activity_sessions.c @@ -583,7 +583,7 @@ static void prv_log_activities(time_t now_utc) { } PBL_ASSERTN(params); - // If this is an event we already logged, or it's still onging, don't log it + // If this is an event we already logged, or it's still ongoing, don't log it if (session->ongoing || (session_exit_utc <= *params->exit_utc)) { continue; } diff --git a/src/fw/services/normal/activity/workout_service.h b/src/fw/services/normal/activity/workout_service.h index 797bb8dd..aa8ca64f 100644 --- a/src/fw/services/normal/activity/workout_service.h +++ b/src/fw/services/normal/activity/workout_service.h @@ -55,7 +55,7 @@ bool workout_service_is_workout_ongoing(void); bool workout_service_is_workout_type_supported(ActivitySessionType type); //! Start a new workout -//! This stops / saves all onoing automatically detected activity sessions +//! This stops / saves all ongoing automatically detected activity sessions //! All workouts must eventually get stopped bool workout_service_start_workout(ActivitySessionType type);