spelling: specific

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 15:43:26 -05:00
parent faf96c3ee2
commit 848a68c241
3 changed files with 8 additions and 8 deletions

View file

@ -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;

View file

@ -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,

View file

@ -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);
}