diff --git a/src/fw/applib/legacy2/ui/text_layer_legacy2.h b/src/fw/applib/legacy2/ui/text_layer_legacy2.h index 755b7fb1..4964405b 100644 --- a/src/fw/applib/legacy2/ui/text_layer_legacy2.h +++ b/src/fw/applib/legacy2/ui/text_layer_legacy2.h @@ -71,7 +71,7 @@ typedef struct TextLayerLegacy2 { //! //! The text layer is automatically marked dirty after this operation. //! @param text_layer The TextLayerLegacy2 to initialize -//! @param frame The frame with which to initialze the TextLayerLegacy2 +//! @param frame The frame with which to initialize the TextLayerLegacy2 void text_layer_legacy2_init(TextLayerLegacy2 *text_layer, const GRect *frame); //! Creates a new TextLayerLegacy2 on the heap and initializes it with the default values. @@ -85,7 +85,7 @@ void text_layer_legacy2_init(TextLayerLegacy2 *text_layer, const GRect *frame); //! * Caching: `false` //! //! The text layer is automatically marked dirty after this operation. -//! @param frame The frame with which to initialze the TextLayerLegacy2 +//! @param frame The frame with which to initialize the TextLayerLegacy2 //! @return A pointer to the TextLayerLegacy2. `NULL` if the TextLayerLegacy2 could not //! be created TextLayerLegacy2* text_layer_legacy2_create(GRect frame); diff --git a/src/fw/applib/ui/bitmap_layer.h b/src/fw/applib/ui/bitmap_layer.h index 4c26e28a..aae274d1 100644 --- a/src/fw/applib/ui/bitmap_layer.h +++ b/src/fw/applib/ui/bitmap_layer.h @@ -75,7 +75,7 @@ typedef struct BitmapLayer { //! //! The bitmap layer is automatically marked dirty after this operation. //! @param bitmap_layer The BitmapLayer to initialize -//! @param frame The frame with which to initialze the BitmapLayer +//! @param frame The frame with which to initialize the BitmapLayer void bitmap_layer_init(BitmapLayer *bitmap_layer, const GRect *frame); //! Creates a new bitmap layer on the heap and initalizes it the default values. diff --git a/src/fw/applib/ui/menu_layer.h b/src/fw/applib/ui/menu_layer.h index c244a0f1..34cfc773 100644 --- a/src/fw/applib/ui/menu_layer.h +++ b/src/fw/applib/ui/menu_layer.h @@ -435,7 +435,7 @@ typedef struct MenuLayer { //! will be selected initially. //! The layer is marked dirty automatically. //! @param menu_layer The \ref MenuLayer to initialize -//! @param frame The frame with which to initialze the \ref MenuLayer +//! @param frame The frame with which to initialize the \ref MenuLayer void menu_layer_init(MenuLayer *menu_layer, const GRect *frame); //! Creates a new \ref MenuLayer on the heap and initalizes it with the default values. diff --git a/src/fw/applib/ui/scroll_layer.h b/src/fw/applib/ui/scroll_layer.h index 686de2de..b622b619 100644 --- a/src/fw/applib/ui/scroll_layer.h +++ b/src/fw/applib/ui/scroll_layer.h @@ -156,7 +156,7 @@ _Static_assert(offsetof(struct ScrollPaging, flags) == offsetof(Layer, flags), //! * Callback context: `NULL` //! The layer is marked dirty automatically. //! @param scroll_layer The ScrollLayer to initialize -//! @param frame The frame with which to initialze the ScrollLayer +//! @param frame The frame with which to initialize the ScrollLayer void scroll_layer_init(ScrollLayer *scroll_layer, const GRect *frame); //! Creates a new ScrollLayer on the heap and initalizes it with the default values: diff --git a/src/fw/applib/ui/text_layer.h b/src/fw/applib/ui/text_layer.h index 8a1550b1..e96aa1f4 100644 --- a/src/fw/applib/ui/text_layer.h +++ b/src/fw/applib/ui/text_layer.h @@ -71,7 +71,7 @@ typedef struct TextLayer { //! //! The text layer is automatically marked dirty after this operation. //! @param text_layer The TextLayer to initialize -//! @param frame The frame with which to initialze the TextLayer +//! @param frame The frame with which to initialize the TextLayer void text_layer_init(TextLayer *text_layer, const GRect *frame); //! Creates a new TextLayer on the heap and initializes it with the default values. @@ -85,7 +85,7 @@ void text_layer_init(TextLayer *text_layer, const GRect *frame); //! * Caching: `false` //! //! The text layer is automatically marked dirty after this operation. -//! @param frame The frame with which to initialze the TextLayer +//! @param frame The frame with which to initialize the TextLayer //! @return A pointer to the TextLayer. `NULL` if the TextLayer could not //! be created TextLayer* text_layer_create(GRect frame); diff --git a/src/fw/apps/system_apps/app_fetch_ui.c b/src/fw/apps/system_apps/app_fetch_ui.c index 282ae071..8d6bb0ba 100644 --- a/src/fw/apps/system_apps/app_fetch_ui.c +++ b/src/fw/apps/system_apps/app_fetch_ui.c @@ -89,7 +89,7 @@ static void prv_app_fetch_launch_app(AppFetchUIData *data) { vibes_short_pulse(); } - // Allocate and inialize the data that would have been sent to the app originally before the + // Allocate and initialize the data that would have been sent to the app originally before the // fetch request. PebbleLaunchAppEventExtended *ext = kernel_malloc_check(sizeof(PebbleLaunchAppEventExtended)); *ext = (PebbleLaunchAppEventExtended) { diff --git a/src/fw/process_management/app_menu_data_source.h b/src/fw/process_management/app_menu_data_source.h index 861bfa59..8920a7eb 100644 --- a/src/fw/process_management/app_menu_data_source.h +++ b/src/fw/process_management/app_menu_data_source.h @@ -93,7 +93,7 @@ typedef struct AppMenuDataSource { bool is_list_loaded; } AppMenuDataSource; -//! Initalize the AppMenuDataSource +//! Initialize the AppMenuDataSource void app_menu_data_source_init(AppMenuDataSource *source, const AppMenuDataSourceCallbacks *handlers, void *callback_context);