From 4ffbbfb8f69e071a3a4d480e679a3c15ca4d4e9e Mon Sep 17 00:00:00 2001
From: smlng <s@mlng.net>
Date: Mon, 10 Apr 2017 16:11:49 +0200
Subject: [PATCH] doc: correct naming of doxygen group in core

---
 core/include/debug.h  | 2 +-
 core/include/log.h    | 2 +-
 core/include/thread.h | 6 +++---
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/core/include/debug.h b/core/include/debug.h
index d009df0ace..7b4c77bdb0 100644
--- a/core/include/debug.h
+++ b/core/include/debug.h
@@ -64,7 +64,7 @@ extern "C" {
 #endif
 
 /**
- *
+ * @name Debugging defines
  * @{
  */
 #if ENABLE_DEBUG
diff --git a/core/include/log.h b/core/include/log.h
index 485b34bba9..b18a169a37 100644
--- a/core/include/log.h
+++ b/core/include/log.h
@@ -85,7 +85,7 @@ enum {
 #endif /* __clang__ */
 
 /**
- * @brief logging convenience defines
+ * @name Logging convenience defines
  * @{
  */
 #define LOG_ERROR(...) LOG(LOG_ERROR, __VA_ARGS__)
diff --git a/core/include/thread.h b/core/include/thread.h
index 6b1afc9cbc..ffdc77dfd0 100644
--- a/core/include/thread.h
+++ b/core/include/thread.h
@@ -132,13 +132,13 @@
 #endif
 
 /**
- * @brief Thread status list
+ * @name List of thread states
  * @{
  */
 #define STATUS_NOT_FOUND        (-1)            /**< Describes an illegal thread status */
 
 /**
- * @brief Blocked states.
+ * @name Blocked states
  * @{
  */
 #define STATUS_STOPPED              0   /**< has terminated                     */
@@ -153,7 +153,7 @@
 /** @} */
 
 /**
- * @brief These have to be on a run queue.
+ * @name Queued states
  * @{*/
 #define STATUS_ON_RUNQUEUE      STATUS_RUNNING  /**< to check if on run queue:
                                                  `st >= STATUS_ON_RUNQUEUE`             */
-- 
GitLab