diff --git a/src/fw/applib/graphics/gpath.c b/src/fw/applib/graphics/gpath.c index ab88533d..dcdff2e1 100644 --- a/src/fw/applib/graphics/gpath.c +++ b/src/fw/applib/graphics/gpath.c @@ -48,7 +48,7 @@ void gpath_init(GPath *path, const GPathInfo *init) { GPath* gpath_create(const GPathInfo *init) { // Can't pad this out because the definition itself is exported. Even if we did pad it out so - // we can theoretically add members to the end of the struct, we'll still have to add compatibilty + // we can theoretically add members to the end of the struct, we'll still have to add compatibility // flags throughout here to check which size of struct the app is going to pass us through these // APIs. GPath* path = applib_malloc(sizeof(GPath)); diff --git a/src/fw/applib/graphics/graphics_circle.c b/src/fw/applib/graphics/graphics_circle.c index f486345c..388ee8c4 100644 --- a/src/fw/applib/graphics/graphics_circle.c +++ b/src/fw/applib/graphics/graphics_circle.c @@ -1211,7 +1211,7 @@ MOCKABLE void graphics_draw_arc_precise_internal(GContext *ctx, GPointPrecise ce center.x.raw_value -= center.x.raw_value % (FIXED_S16_3_ONE.raw_value / 2); center.y.raw_value -= center.y.raw_value % (FIXED_S16_3_ONE.raw_value / 2); - // To maintain compability we have to adjust from integral points where given point means + // To maintain compatibility we have to adjust from integral points where given point means // center of the point center.x.raw_value += 4; center.y.raw_value += 4; diff --git a/src/fw/process_management/launcher_app_message.h b/src/fw/process_management/launcher_app_message.h index 08741d8d..9670ea9a 100644 --- a/src/fw/process_management/launcher_app_message.h +++ b/src/fw/process_management/launcher_app_message.h @@ -22,5 +22,5 @@ //! support flags for the AppRunState endpoint will use that endpoint (0x34) instead. That //! endpoint should be used for sending messages on start/stop status of applications and //! sending/recieving application states. The LauncherAppMessage endpoint is kept for -//! backwards compability with older mobile applications. +//! backwards compatibility with older mobile applications. void launcher_app_message_send_app_state_deprecated(const Uuid *uuid, bool running);