Przeglądaj źródła

Correct comments about doxygen format

chang /*@{*/ to /**@{*/ and /*@}*/ to /**@}*/
dogandog 9 lat temu
rodzic
commit
91fb7ee1d6
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      src/module.c

+ 2 - 2
src/module.c

@@ -366,7 +366,7 @@ static void (*rt_module_unload_hook)(rt_module_t module);
  * @addtogroup Hook
  * @addtogroup Hook
  */
  */
 
 
-/*@{*/
+/**@{*/
 
 
 /**
 /**
  * This function will set a hook function, which will be invoked when module
  * This function will set a hook function, which will be invoked when module
@@ -390,7 +390,7 @@ void rt_module_unload_sethook(void (*hook)(rt_module_t module))
     rt_module_unload_hook = hook;
     rt_module_unload_hook = hook;
 }
 }
 
 
-/*@}*/
+/**@}*/
 #endif
 #endif
 
 
 static struct rt_module *_load_shared_object(const char *name,
 static struct rt_module *_load_shared_object(const char *name,