From 4ec73561f9cb27e094a9bc1b14e800d2186d1020 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 14:51:52 -0500 Subject: [PATCH] spelling: initialization Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/apps/system_apps/health/health.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fw/apps/system_apps/health/health.c b/src/fw/apps/system_apps/health/health.c index 9980cab3..b79fd96c 100644 --- a/src/fw/apps/system_apps/health/health.c +++ b/src/fw/apps/system_apps/health/health.c @@ -87,7 +87,7 @@ static void prv_health_service_event_handler(HealthEventType event, void *contex // //! Initialize application -static void prv_finish_initilization_cb(bool in_focus) { +static void prv_finish_initialization_cb(bool in_focus) { if (in_focus) { HealthAppData *health_app_data = app_state_get_user_data(); @@ -128,7 +128,7 @@ static void prv_initialize(void) { // Finish up initializing the app a bit later. This helps reduce lag when opening the app app_focus_service_subscribe_handlers((AppFocusHandlers){ - .did_focus = prv_finish_initilization_cb, + .did_focus = prv_finish_initialization_cb, }); }