spelling: separator

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 15:41:00 -05:00
parent 586db5b942
commit 927251a776
5 changed files with 7 additions and 7 deletions

View file

@ -242,7 +242,7 @@ static void prv_draw_goal_line(GContext *ctx, int32_t current_progress, int32_t
}
#if ROBERT_SCREEN_RES
static void prv_draw_seperator(GContext *ctx, GRect bounds, GColor color) {
static void prv_draw_separator(GContext *ctx, GRect bounds, GColor color) {
bounds.origin.y += 111; // top offset
GPoint p1 = bounds.origin;
@ -442,9 +442,9 @@ static void prv_base_layer_update_proc(Layer *layer, GContext *ctx) {
#if ROBERT_SCREEN_RES
bounds = grect_inset(bounds, GEdgeInsets(0, 25));
// draw deperator
// draw separator
if (!screen_is_obstructed) {
prv_draw_seperator(ctx, bounds, GColorWhite);
prv_draw_separator(ctx, bounds, GColorWhite);
}
#endif
@ -468,7 +468,7 @@ static void prv_update_steps_buffer(KickstartData *data) {
const int thousands = data->current_steps / 1000;
const int hundreds = data->current_steps % 1000;
if (thousands) {
/// Step count greater than 1000 with a thousands seperator
/// Step count greater than 1000 with a thousands separator
snprintf(data->steps_buffer, sizeof(data->steps_buffer), i18n_get("%d,%03d", data),
thousands, hundreds);
} else {