changeset 68:767b90552ede

core: fix some doxygen warnings
author David Demelier <markand@malikania.fr>
date Mon, 27 Jan 2020 13:04:36 +0100
parents 7187c0d9b9c0
children 5da49274e5fb
files src/core/script.h
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/core/script.h	Mon Jan 27 13:04:19 2020 +0100
+++ b/src/core/script.h	Mon Jan 27 13:04:36 2020 +0100
@@ -47,8 +47,8 @@
  * \brief Single-linked list of actions.
  */
 struct script_action {
-	struct action action;
-	struct script_action *next;
+	struct action action;           /*!< (RW) Action to use */
+	struct script_action *next;     /*!< (RO) Pointer to next action */
 };
 
 /**