From 848a68c2417e53d2bd929b612530e41dbbc554bd Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 15:43:26 -0500 Subject: [PATCH] spelling: specific Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/applib/plugin_service.c | 2 +- src/fw/services/normal/analytics/analytics_event.c | 12 ++++++------ tools/clar/clar.c | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/fw/applib/plugin_service.c b/src/fw/applib/plugin_service.c index c26704cd..02fb5aa6 100644 --- a/src/fw/applib/plugin_service.c +++ b/src/fw/applib/plugin_service.c @@ -49,7 +49,7 @@ static uint16_t prv_get_service_index(Uuid *uuid) { // --------------------------------------------------------------------------------------------------------------- -// Used by list_find to locate the handler for a specfic service index. +// Used by list_find to locate the handler for a specific service index. static bool prv_service_filter(ListNode *node, void *tp) { PluginServiceEntry *info = (PluginServiceEntry *)node; uint16_t service_idx = (uint16_t)(uintptr_t)tp; diff --git a/src/fw/services/normal/analytics/analytics_event.c b/src/fw/services/normal/analytics/analytics_event.c index 1b909129..1185a8d4 100644 --- a/src/fw/services/normal/analytics/analytics_event.c +++ b/src/fw/services/normal/analytics/analytics_event.c @@ -100,7 +100,7 @@ void analytics_event_app_launch(const Uuid *uuid) { return; } - // Format the event specifc info in the blob. The analytics_logging_log_event() method will fill + // Format the event specific info in the blob. The analytics_logging_log_event() method will fill // in the common fields AnalyticsEventBlob event_blob = { .event = AnalyticsEvent_AppLaunch, @@ -121,7 +121,7 @@ void analytics_event_app_launch(const Uuid *uuid) { // Log a pin open/create/update event. static void prv_simple_pin_event(time_t timestamp, const Uuid *parent_id, AnalyticsEvent event_enum, const char *verb) { - // Format the event specifc info in the blob. The analytics_logging_log_event() method will fill + // Format the event specific info in the blob. The analytics_logging_log_event() method will fill // in the common fields AnalyticsEventBlob event_blob = { .event = event_enum, @@ -165,7 +165,7 @@ void analytics_event_pin_updated(time_t timestamp, const Uuid *parent_id) { // Log a pin action event. void analytics_event_pin_action(time_t timestamp, const Uuid *parent_id, TimelineItemActionType action_type) { - // Format the event specifc info in the blob. The analytics_logging_log_event() method will fill + // Format the event specific info in the blob. The analytics_logging_log_event() method will fill // in the common fields AnalyticsEventBlob event_blob = { .event = AnalyticsEvent_PinAction, @@ -192,7 +192,7 @@ void analytics_event_pin_app_launch(time_t timestamp, const Uuid *parent_id) { return; } - // Format the event specifc info in the blob. The analytics_logging_log_event() method will fill + // Format the event specific info in the blob. The analytics_logging_log_event() method will fill // in the common fields AnalyticsEventBlob event_blob = { .event = AnalyticsEvent_PinAppLaunch, @@ -461,7 +461,7 @@ void analytics_event_stationary_state_change(time_t timestamp, uint8_t state_cha void analytics_event_health_insight_created(time_t timestamp, ActivityInsightType insight_type, PercentTier pct_tier) { - // Format the event specifc info in the blob. The analytics_logging_log_event() method will fill + // Format the event specific info in the blob. The analytics_logging_log_event() method will fill // in the common fields AnalyticsEventBlob event_blob = { .event = AnalyticsEvent_HealthInsightCreated, @@ -486,7 +486,7 @@ void analytics_event_health_insight_created(time_t timestamp, void analytics_event_health_insight_response(time_t timestamp, ActivityInsightType insight_type, ActivitySessionType activity_type, ActivityInsightResponseType response_id) { - // Format the event specifc info in the blob. The analytics_logging_log_event() method will fill + // Format the event specific info in the blob. The analytics_logging_log_event() method will fill // in the common fields AnalyticsEventBlob event_blob = { .event = AnalyticsEvent_HealthInsightResponse, diff --git a/tools/clar/clar.c b/tools/clar/clar.c index e5bb35d0..cdf556f1 100644 --- a/tools/clar/clar.c +++ b/tools/clar/clar.c @@ -281,7 +281,7 @@ clar_usage(const char *arg) printf(" -q \t\tOnly report tests that had an error\n"); printf(" -Q \t\tQuit as soon as a test fails\n"); printf(" -l \t\tPrint suite, category, and test names\n"); - printf(" -tXX\t\tRun a specifc test by name\n"); + printf(" -tXX\t\tRun a specific test by name\n"); exit(-1); }