diff --git a/src/apps/fps_test/src/fps_test.c b/src/apps/fps_test/src/fps_test.c index a63647da..127b1ac2 100644 --- a/src/apps/fps_test/src/fps_test.c +++ b/src/apps/fps_test/src/fps_test.c @@ -179,7 +179,7 @@ static void prv_window_load(Window *window) { // one image at the top left .topleft_layer, // and two menu layers .action_list1 and .action_list2 that overlay each other - // some hackery with the two menu layers goes on to keep their scroll offest in sync + // some hackery with the two menu layers goes on to keep their scroll offset in sync // and to have the inverter layer rendered only once const int16_t navbar_width = s_fps_topleft_bitmap.bounds.size.w; diff --git a/src/fw/apps/demo_apps/fps_test_app.c b/src/fw/apps/demo_apps/fps_test_app.c index ddbf2712..0653c0fc 100644 --- a/src/fw/apps/demo_apps/fps_test_app.c +++ b/src/fw/apps/demo_apps/fps_test_app.c @@ -183,7 +183,7 @@ static void prv_window_load(Window *window) { // one image at the top left .topleft_layer, // and two menu layers .action_list1 and .action_list2 that overlay each other - // some hackery with the two menu layers goes on to keep their scroll offest in sync + // some hackery with the two menu layers goes on to keep their scroll offset in sync // and to have the inverter layer rendered only once const int16_t navbar_width = s_fps_topleft_bitmap.bounds.size.w; diff --git a/src/fw/apps/watch/kickstart/kickstart.c b/src/fw/apps/watch/kickstart/kickstart.c index e858258a..3942fa22 100644 --- a/src/fw/apps/watch/kickstart/kickstart.c +++ b/src/fw/apps/watch/kickstart/kickstart.c @@ -274,7 +274,7 @@ static void prv_draw_steps_and_shoe(GContext *ctx, const char *steps_buffer, GFo icon_bounds.origin.x += 23; // icon left offset icon_bounds.origin.y += 9; // icon top offset #elif ROBERT_SCREEN_RES - icon_bounds.origin.y += (46 - icon_bounds.size.h); // icon top offest + icon_bounds.origin.y += (46 - icon_bounds.size.h); // icon top offset #elif SNOWY_SCREEN_RES icon_bounds.origin.x = screen_is_obstructed ? bounds.origin.x // icon_left offset : (bounds.size.w / 2) - (icon_bounds.size.w / 2); diff --git a/src/fw/apps/watch/tictoc/spalding/watch_model.h b/src/fw/apps/watch/tictoc/spalding/watch_model.h index 8b60cde5..398d79c7 100644 --- a/src/fw/apps/watch/tictoc/spalding/watch_model.h +++ b/src/fw/apps/watch/tictoc/spalding/watch_model.h @@ -91,7 +91,7 @@ typedef struct { typedef struct { ClockFace face; char buffer[4]; - int32_t utc_offest; + int32_t utc_offset; GColor text_color; } NonLocalClockFace; diff --git a/tests/fw/graphics/test_bitblt_palette_1bit.c b/tests/fw/graphics/test_bitblt_palette_1bit.c index 05141dec..534a80a7 100644 --- a/tests/fw/graphics/test_bitblt_palette_1bit.c +++ b/tests/fw/graphics/test_bitblt_palette_1bit.c @@ -169,13 +169,13 @@ void test_bitblt_palette_1bit__2bit_palette_to_1bit_wrap(void) { // The top right half will be alternating between dithered gray and black lines // The bottom right half consists of a diagonal white line on a black background // The left half will be completely white -void test_bitblt_palette_1bit__2bit_palette_to_1bit_offest(void) { +void test_bitblt_palette_1bit__2bit_palette_to_1bit_offset(void) { GBitmap *src_bitmap = get_gbitmap_from_pbi("test_bitblt_palette_1bit__2bit_palette_to_1bit.pbi"); bitblt_bitmap_into_bitmap(&s_dest_bitmap, src_bitmap, GPoint(20,20), GCompOpAssign, GColorWhite); cl_assert(gbitmap_pbi_eq(&s_dest_bitmap, - "test_bitblt_palette_1bit__2bit_palette_to_1bit_offest-expect.pbi")); + "test_bitblt_palette_1bit__2bit_palette_to_1bit_offset-expect.pbi")); gbitmap_destroy(src_bitmap); }