Comment: xTaskResumeAll: comment: doesn't match the code (#281)

diff --git a/tasks.c b/tasks.c
index fd3c257..988e32b 100644
--- a/tasks.c
+++ b/tasks.c
@@ -2238,8 +2238,8 @@
                     ( void ) uxListRemove( &( pxTCB->xStateListItem ) );

                     prvAddTaskToReadyList( pxTCB );

 

-                    /* If the moved task has a priority higher than the current

-                     * task then a yield must be performed. */

+                    /* If the moved task has a priority higher than or equal to

+                     * the current task then a yield must be performed. */

                     if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority )

                     {

                         xYieldPending = pdTRUE;