diff --git a/src/fw/kernel/ui/modals/modal_manager.h b/src/fw/kernel/ui/modals/modal_manager.h index 01071e7f..e40aa840 100644 --- a/src/fw/kernel/ui/modals/modal_manager.h +++ b/src/fw/kernel/ui/modals/modal_manager.h @@ -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 diff --git a/src/fw/services/common/new_timer/new_timer.h b/src/fw/services/common/new_timer/new_timer.h index 8c706f23..b3d65fc9 100644 --- a/src/fw/services/common/new_timer/new_timer.h +++ b/src/fw/services/common/new_timer/new_timer.h @@ -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);