spell: fix doxygen comment typos: /arch

Fix doxygen comment typos used to generate API docs

Change-Id: I94df2e3a2bda248824ed2aeff3dd0eb743f0bf3e
Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
This commit is contained in:
David B. Kinder 2017-04-19 10:16:15 -07:00 committed by Anas Nashif
commit 690c5be381
3 changed files with 3 additions and 3 deletions

View file

@ -58,7 +58,7 @@ static ALWAYS_INLINE int _is_in_isr(void)
/**
*
* @bried Indicates the interrupt number of the highest priority
* @brief Indicates the interrupt number of the highest priority
* active interrupt
*
* @return IRQ number

View file

@ -32,7 +32,7 @@ GTEXT(_IntExit)
*
* When inserted in the vector table, _isr_wrapper() demuxes the ISR table using
* the running interrupt number as the index, and invokes the registered ISR
* with its correspoding argument. When returning from the ISR, it determines
* with its corresponding argument. When returning from the ISR, it determines
* if a context switch needs to happen (see documentation for __pendsv()) and
* pends the PendSV exception if so: the latter will perform the context switch
* itself.

View file

@ -40,7 +40,7 @@ static ALWAYS_INLINE void thread_monitor_init(struct k_thread *thread)
/**
*
* @brief Intialize a new thread from its stack space
* @brief Initialize a new thread from its stack space
*
* The control structure (thread) is put at the lower address of the stack. An
* initial context, to be "restored" by __pendsv(), is put at the other end of