From beb005e20d67d6b0f36de71abdf995900d9c32d1 Mon Sep 17 00:00:00 2001 From: dogandog Date: Fri, 19 Aug 2016 10:17:36 +0800 Subject: [PATCH] Correct comments about doxygen format chang /*@{*/ to /**@{*/ and /*@}*/ to /**@}*/ --- src/slab.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/slab.c b/src/slab.c index 78355d0e46..d1093a7a93 100644 --- a/src/slab.c +++ b/src/slab.c @@ -81,7 +81,7 @@ static void (*rt_free_hook)(void *ptr); * @addtogroup Hook */ -/*@{*/ +/**@{*/ /** * This function will set a hook function, which will be invoked when a memory @@ -107,7 +107,7 @@ void rt_free_sethook(void (*hook)(void *ptr)) } RTM_EXPORT(rt_free_sethook); -/*@}*/ +/**@}*/ #endif @@ -472,7 +472,7 @@ rt_inline int zoneindex(rt_uint32_t *bytes) * @addtogroup MM */ -/*@{*/ +/**@{*/ /** * This function will allocate a block from system heap memory. @@ -963,6 +963,6 @@ FINSH_FUNCTION_EXPORT(list_mem, list memory usage information) #endif #endif -/*@}*/ +/**@}*/ #endif