list.c: add comment

This commit is contained in:
Gabriel Staples 2024-05-08 15:34:59 -07:00
parent ee02d995fe
commit b67980cc2c

4
list.c
View file

@ -201,7 +201,9 @@ void vListInsert( List_t * const pxList,
for( pxIterator = ( ListItem_t * ) &( pxList->xListEnd ); pxIterator->pxNext->xItemValue <= xValueOfInsertion; pxIterator = pxIterator->pxNext )
{
/* There is nothing to do here, just iterating to the wanted
* insertion position. */
* insertion position.
* IF YOU FIND YOUR CODE STUCK HERE, SEE THE NOTE JUST ABOVE.
*/
}
}