From bfcaf391977cc65c47a026b4ab890590a696e15e Mon Sep 17 00:00:00 2001 From: iabdalkader Date: Thu, 11 May 2023 19:11:34 +0200 Subject: [PATCH] stm32/irq: Fix typo in comment about priorities. Signed-off-by: iabdalkader --- ports/stm32/irq.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ports/stm32/irq.h b/ports/stm32/irq.h index 6c10f5e1b0..8e98b4cc5e 100644 --- a/ports/stm32/irq.h +++ b/ports/stm32/irq.h @@ -98,8 +98,8 @@ static inline void restore_irq_pri(uint32_t state) { // // The default priority grouping is set to NVIC_PRIORITYGROUP_4 in the // HAL_Init function. This corresponds to 4 bits for the priority field -// and 0 bits for the sub-priority field (which means that for all intensive -// purposes that the sub-priorities below are ignored). +// and 0 bits for the sub-priority field (which means that for all intents +// and purposes, the sub-priorities below are ignored). // // While a given interrupt is being processed, only higher priority (lower number) // interrupts will preempt a given interrupt. If sub-priorities are active