diff --git a/doc/contribute/doxygen/groups.rst b/doc/contribute/doxygen/groups.rst index 3d3575b91b1..aafee3c4bce 100644 --- a/doc/contribute/doxygen/groups.rst +++ b/doc/contribute/doxygen/groups.rst @@ -25,18 +25,18 @@ The desired entities must be inside the comment block that uses the syntax :lite .. code-block:: C - /** @defgroup Group Name - * Detailed Description of the Group - * @{ - */ + /** @defgroup Group Name + * Detailed Description of the Group + * @{ + */ - /* @brief Brief description of the entity*/ - + /* @brief Brief description of the entity*/ + ENTITY1; - /* @brief Brief description of the entity*/ - + /* @brief Brief description of the entity*/ + ENTITY2; - /** @} */ // End of GroupLabel + /** @} */ // End of GroupLabel If you need to add more information that is not listed inside the group block, you must use :literal:`@addtogroup `. @@ -46,11 +46,12 @@ Example: .. code-block:: C - /** @addtogroup - * Optional: This line adds information to the GroupLabel Detailed Description of the Group - * @{ - */ + /** @addtogroup + * Optional: This line adds information to the GroupLabel Detailed Description of the Group + * @{ + */ - /* The entities you want to add must be inserted inside before the close block*/ + /* The entities you want to add must be inserted inside before the close block*/ + + /** @} // End of addtogroup GroupLabel */ - /** @} // End of addtogroup GroupLabel \ No newline at end of file