diff --git a/src/fw/apps/system_apps/health/health_detail_card.c b/src/fw/apps/system_apps/health/health_detail_card.c index c525f3e4..8af39eaf 100644 --- a/src/fw/apps/system_apps/health/health_detail_card.c +++ b/src/fw/apps/system_apps/health/health_detail_card.c @@ -175,7 +175,7 @@ static void prv_draw_progress_bar_in_zone(GContext *ctx, const GRect *zone_rect, HealthProgressSegment segments[] = { { - // Left side vertical line (needed for the draw outline function to draw the verticle lines) + // Left side vertical line (needed for the draw outline function to draw the vertical lines) .type = HealthProgressSegmentType_Corner, .points = { {progress_bar_x, progress_bar_y}, @@ -185,7 +185,7 @@ static void prv_draw_progress_bar_in_zone(GContext *ctx, const GRect *zone_rect, }, }, { - // Right side vertical line (needed for the draw outline function to draw the verticle lines) + // Right side vertical line (needed for the draw outline function to draw the vertical lines) .type = HealthProgressSegmentType_Corner, .points = { {progress_bar_x + progress_bar_width, progress_bar_y}, diff --git a/src/fw/services/common/ecompass.c b/src/fw/services/common/ecompass.c index 5455cd6f..f2c47334 100644 --- a/src/fw/services/common/ecompass.c +++ b/src/fw/services/common/ecompass.c @@ -161,7 +161,7 @@ static int32_t prv_correct_for_roll_and_pitch(AccelRawData *accel_data, int32_t mx_rot, my_rot; - // per freescale AN4249, roll is unstable close to verticle but pitch is ok + // per freescale AN4249, roll is unstable close to vertical but pitch is ok int32_t corr = 0; if (TRIGANGLE_TO_DEG(pitch) > 82) { pitch = TRIG_MAX_ANGLE / 4;