add a missing comma (#651)

This commit is contained in:
Nicolas 2023-03-29 15:23:45 +02:00 committed by GitHub
parent 68f105375f
commit 1b8a4244bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1664,7 +1664,7 @@ configSTACK_DEPTH_TYPE uxTaskGetStackHighWaterMark2( TaskHandle_t xTask ) PRIVIL
/**
* task.h
* @code{c}
* void vApplicationStackOverflowHook( TaskHandle_t xTask char *pcTaskName);
* void vApplicationStackOverflowHook( TaskHandle_t xTask, char *pcTaskName);
* @endcode
*
* The application stack overflow hook is called when a stack overflow is detected for a task.