From 91fb7ee1d63270cb381a0fb5d1915c136333d2a7 Mon Sep 17 00:00:00 2001 From: dogandog Date: Fri, 19 Aug 2016 10:13:58 +0800 Subject: [PATCH] Correct comments about doxygen format chang /*@{*/ to /**@{*/ and /*@}*/ to /**@}*/ --- src/module.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/module.c b/src/module.c index b03611a4f4..79ac0c8688 100644 --- a/src/module.c +++ b/src/module.c @@ -366,7 +366,7 @@ static void (*rt_module_unload_hook)(rt_module_t module); * @addtogroup Hook */ -/*@{*/ +/**@{*/ /** * 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; } -/*@}*/ +/**@}*/ #endif static struct rt_module *_load_shared_object(const char *name,