diff --git a/src/fw/applib/graphics/text.h b/src/fw/applib/graphics/text.h index 5e563e71..c7c3b64a 100644 --- a/src/fw/applib/graphics/text.h +++ b/src/fw/applib/graphics/text.h @@ -138,7 +138,7 @@ void graphics_text_init(void); //! Draw text into the current graphics context, using the context's current text color. //! The text will be drawn inside a box with the specified dimensions and -//! configuration, with clipping occuring automatically. +//! configuration, with clipping occurring automatically. //! @param ctx The destination graphics context in which to draw //! @param text The zero terminated UTF-8 string to draw //! @param font The font in which the text should be set diff --git a/src/fw/applib/legacy2/ui/text_layer_legacy2.h b/src/fw/applib/legacy2/ui/text_layer_legacy2.h index 4964405b..653e4c78 100644 --- a/src/fw/applib/legacy2/ui/text_layer_legacy2.h +++ b/src/fw/applib/legacy2/ui/text_layer_legacy2.h @@ -161,7 +161,7 @@ void text_layer_legacy2_set_text_alignment(TextLayerLegacy2 *text_layer, //! By default, layout caching is off (false). Layout caches store the max used //! height and width of a text layer. //! NOTE: when using cached layouts, text_layer_legacy2_deinit() MUST be called at some -//! point in time to prevent memory leaks from occuring. +//! point in time to prevent memory leaks from occurring. void text_layer_legacy2_set_should_cache_layout(TextLayerLegacy2 *text_layer, bool should_cache_layout); diff --git a/src/fw/applib/ui/text_layer.h b/src/fw/applib/ui/text_layer.h index e96aa1f4..50a5d9c7 100644 --- a/src/fw/applib/ui/text_layer.h +++ b/src/fw/applib/ui/text_layer.h @@ -158,7 +158,7 @@ void text_layer_set_text_alignment(TextLayer *text_layer, GTextAlignment text_al //! By default, layout caching is off (false). Layout caches store the max used //! height and width of a text layer. //! NOTE: when using cached layouts, text_layer_deinit() MUST be called at some -//! point in time to prevent memory leaks from occuring. +//! point in time to prevent memory leaks from occurring. void text_layer_set_should_cache_layout(TextLayer *text_layer, bool should_cache_layout); //! @internal diff --git a/src/fw/drivers/accessory.c b/src/fw/drivers/accessory.c index f25ad26d..e9f71ae6 100644 --- a/src/fw/drivers/accessory.c +++ b/src/fw/drivers/accessory.c @@ -302,7 +302,7 @@ void accessory_send_byte(uint8_t data) { portENTER_CRITICAL(); if (s_send_history.has_data) { // The send buffer is full. This means that the receive interrupt hasn't fired to clear the - // buffer which indicates that there is bus contention preventing a stop bit from occuring. + // buffer which indicates that there is bus contention preventing a stop bit from occurring. s_bus_contention_detected = true; } else { s_send_history.data = data;