diff --git a/core/include/rmutex.h b/core/include/rmutex.h
index 880bbf0ea28adbde828639adbbd9e78cec755cd4..6bf99efd7e8ac171f72975e7879dd1a9196a3bae 100644
--- a/core/include/rmutex.h
+++ b/core/include/rmutex.h
@@ -7,7 +7,7 @@
  */
 
 /**
- * @ingroup     core_sync Synchronization
+ * @ingroup     core_sync
  * @brief       Recursive Mutex for thread synchronization
  * @{
  *
diff --git a/core/include/thread.h b/core/include/thread.h
index d59cabb2bff471aca1b1ea5f5652d1afcdd4507f..79ca817a1709a17a4028ba638e6214edb92800f4 100644
--- a/core/include/thread.h
+++ b/core/include/thread.h
@@ -241,7 +241,6 @@ struct _thread {
 
 /**
  * @def THREAD_EXTRA_STACKSIZE_PRINTF
- * @ingroup conf
  * @brief Size of the task's printf stack in bytes
  *
  * @note This value must be defined by the CPU specific implementation, please
diff --git a/core/rmutex.c b/core/rmutex.c
index 983ec83434261f2b05ad7b46d7fb1c82eb87f69f..9438f74f8a65c71d519fe800a7d02beebf2fa671 100644
--- a/core/rmutex.c
+++ b/core/rmutex.c
@@ -7,8 +7,7 @@
  */
 
 /**
- * @ingroup     core_sync Synchronization
- * @brief       Recursive Mutex for thread synchronization
+ * @ingroup     core_sync
  * @{
  *
  * @file