spelling: priority

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

View file

@ -135,7 +135,7 @@ void modal_manager_handle_button_event(PebbleEvent *event);
void modal_manager_pop_all(void);
//! Pops all windows from modal stacks with priorities less than the given priority
//! @param the max priorirty stack to pop all windows from
//! @param the max priority stack to pop all windows from
void modal_manager_pop_all_below_priority(ModalPriority priority);
//! Called from the kernel event loop between events to handle any changes that have been made

View file

@ -30,7 +30,7 @@
//! callback to send an event to another thread with evented_timer.h. In the future these other
//! threads will probably use their own TaskTimerManager instances instead and this thread will
//! will get a whole lot less busy and reserved for only high priority work. At that time this
//! thread will probably get renamed something like KernelHighPriortity.
//! thread will probably get renamed something like KernelHighPriority.
typedef void (*NewTimerCallback)(void *data);