From 4014abb943e1578fce642f7b1776e0d0869be62f Mon Sep 17 00:00:00 2001 From: Muneeb Ahmed <54290492+muneebahmed10@users.noreply.github.com> Date: Thu, 10 Feb 2022 12:36:42 -0700 Subject: [PATCH] Fix some warnings in doxygen comments (#453) Co-authored-by: Gaurav-Aggarwal-AWS <33462878+aggarg@users.noreply.github.com> --- include/event_groups.h | 2 -- include/task.h | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/include/event_groups.h b/include/event_groups.h index 48c8fdbd8..7a6980583 100644 --- a/include/event_groups.h +++ b/include/event_groups.h @@ -65,8 +65,6 @@ * be set and then tested atomically - as is the case where event groups are * used to create a synchronisation point between multiple tasks (a * 'rendezvous'). - * - * \defgroup EventGroup */ diff --git a/include/task.h b/include/task.h index f35a8d703..8921f10c7 100644 --- a/include/task.h +++ b/include/task.h @@ -1000,7 +1000,7 @@ eTaskState eTaskGetState( TaskHandle_t xTask ) PRIVILEGED_FUNCTION; * filled with information about the task referenced by the handle passed using * the xTask parameter. * - * @xGetFreeStackSpace The TaskStatus_t structure contains a member to report + * @param xGetFreeStackSpace The TaskStatus_t structure contains a member to report * the stack high water mark of the task being queried. Calculating the stack * high water mark takes a relatively long time, and can make the system * temporarily unresponsive - so the xGetFreeStackSpace parameter is provided to