spelling: notification

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 15:14:28 -05:00
parent d9ec8a3438
commit c2e8d1d0ce
3 changed files with 3 additions and 3 deletions

View file

@ -1250,7 +1250,7 @@ void notification_window_add_notification_by_id(Uuid *id) {
prv_notification_window_add_notification(id, NotificationMobile); 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) { void notification_window_focus_notification(Uuid *id, bool animated) {
NotificationWindowData *data = &s_notification_window_data; NotificationWindowData *data = &s_notification_window_data;

View file

@ -74,7 +74,7 @@ void notifications_presented_list_init(void);
typedef void (*NotificationListEachCallback)(Uuid *id, NotificationType type, void *cb_data); 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 //! @param callback If null this function is a no-op
void notifications_presented_list_each(NotificationListEachCallback callback, void *cb_data); void notifications_presented_list_each(NotificationListEachCallback callback, void *cb_data);

View file

@ -20,7 +20,7 @@
#include "process_management/app_install_types.h" #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 //! along with the application names that were missed
//! Note: missed_apps_ids is free'd by this function //! Note: missed_apps_ids is free'd by this function
//! @param missed_apps_count number of app names to display //! @param missed_apps_count number of app names to display