diff --git a/src/fw/popups/notifications/notification_window.c b/src/fw/popups/notifications/notification_window.c index 873db8fb..970cd75d 100644 --- a/src/fw/popups/notifications/notification_window.c +++ b/src/fw/popups/notifications/notification_window.c @@ -1250,7 +1250,7 @@ void notification_window_add_notification_by_id(Uuid *id) { prv_notification_window_add_notification(id, NotificationMobile); } -//! The animate mode slides the notificaiton in from the top as if it was a new notification. +//! The animate mode slides the notification in from the top as if it was a new notification. void notification_window_focus_notification(Uuid *id, bool animated) { NotificationWindowData *data = &s_notification_window_data; diff --git a/src/fw/popups/notifications/notifications_presented_list.h b/src/fw/popups/notifications/notifications_presented_list.h index d21a3c88..b8c65eae 100644 --- a/src/fw/popups/notifications/notifications_presented_list.h +++ b/src/fw/popups/notifications/notifications_presented_list.h @@ -74,7 +74,7 @@ void notifications_presented_list_init(void); typedef void (*NotificationListEachCallback)(Uuid *id, NotificationType type, void *cb_data); -//! Executes the specified callback for each notificaiton in the presented list +//! Executes the specified callback for each notification in the presented list //! @param callback If null this function is a no-op void notifications_presented_list_each(NotificationListEachCallback callback, void *cb_data); diff --git a/src/fw/popups/wakeup_ui.h b/src/fw/popups/wakeup_ui.h index d81f93b2..1f0a8108 100644 --- a/src/fw/popups/wakeup_ui.h +++ b/src/fw/popups/wakeup_ui.h @@ -20,7 +20,7 @@ #include "process_management/app_install_types.h" -//! This function creates a popup window displaying a missed wakeup events notificatoin +//! This function creates a popup window displaying a missed wakeup events notification //! along with the application names that were missed //! Note: missed_apps_ids is free'd by this function //! @param missed_apps_count number of app names to display