瀏覽代碼

Correct comments about doxygen format

chang /*@{*/ to /**@{*/ and /*@}*/ to /**@}*/
dogandog 9 年之前
父節點
當前提交
ed7088024d
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      src/object.c

+ 4 - 4
src/object.c

@@ -87,7 +87,7 @@ void (*rt_object_put_hook)(struct rt_object *object);
  * @addtogroup Hook
  * @addtogroup Hook
  */
  */
 
 
-/*@{*/
+/**@{*/
 
 
 /**
 /**
  * This function will set a hook function, which will be invoked when object
  * This function will set a hook function, which will be invoked when object
@@ -159,7 +159,7 @@ void rt_object_put_sethook(void (*hook)(struct rt_object *object))
     rt_object_put_hook = hook;
     rt_object_put_hook = hook;
 }
 }
 
 
-/*@}*/
+/**@}*/
 #endif
 #endif
 
 
 /**
 /**
@@ -178,7 +178,7 @@ void rt_system_object_init(void)
  * @addtogroup KernelObject
  * @addtogroup KernelObject
  */
  */
 
 
-/*@{*/
+/**@{*/
 
 
 /**
 /**
  * This function will return the specified type of object information.
  * This function will return the specified type of object information.
@@ -494,4 +494,4 @@ rt_object_t rt_object_find(const char *name, rt_uint8_t type)
     return RT_NULL;
     return RT_NULL;
 }
 }
 
 
-/*@}*/
+/**@}*/