From 845a048b83a35701fc066456cf5ff71126fe2f45 Mon Sep 17 00:00:00 2001 From: Paul Bartell Date: Mon, 5 Feb 2024 13:42:20 -0800 Subject: [PATCH] tasks.c: Fix typo --- tasks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.c b/tasks.c index 5c7665abb..f077667e8 100644 --- a/tasks.c +++ b/tasks.c @@ -3808,7 +3808,7 @@ void vTaskSuspendAll( void ) /* This must only be called from within a task. */ portASSERT_IF_IN_ISR(); - /* This must enver be called from inside a critical section */ + /* This must never be called from inside a critical section */ configASSERT( portGET_CRITICAL_NESTING_COUNT() == 0 ); if( xSchedulerRunning != pdFALSE )