From 906bb2063385e64dccababc2f3f6883a0b8b53c8 Mon Sep 17 00:00:00 2001 From: Alfred Gedeon Date: Fri, 5 Mar 2021 08:44:41 -0800 Subject: [PATCH] Comment: fix code comment for xTaskAbortDelay --- tasks.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks.c b/tasks.c index a994ec9082..fd3c257441 100644 --- a/tasks.c +++ b/tasks.c @@ -2694,8 +2694,8 @@ BaseType_t xTaskCatchUpTicks( TickType_t xTicksToCatchUp ) #if ( configUSE_PREEMPTION == 1 ) { /* Preemption is on, but a context switch should only be - * performed if the unblocked task has a priority that is - * equal to or higher than the currently executing task. */ + * performed if the unblocked task has a priority that is + * higher than the currently executing task. */ if( pxTCB->uxPriority > pxCurrentTCB->uxPriority ) { /* Pend the yield to be performed when the scheduler