From 20fb863ddf3e21865872d747c948df9bb677aa05 Mon Sep 17 00:00:00 2001 From: dogandog Date: Fri, 19 Aug 2016 10:19:46 +0800 Subject: [PATCH] Correct comments about doxygen format chang /*@{*/ to /**@{*/ and /*@}*/ to /**@}*/ --- src/timer.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/timer.c b/src/timer.c index ba2801530..e34d229be 100644 --- a/src/timer.c +++ b/src/timer.c @@ -63,7 +63,7 @@ static void (*rt_timer_timeout_hook)(struct rt_timer *timer); * @addtogroup Hook */ -/*@{*/ +/**@{*/ /** * This function will set a hook function, which will be invoked when timer @@ -76,7 +76,7 @@ void rt_timer_timeout_sethook(void (*hook)(struct rt_timer *timer)) rt_timer_timeout_hook = hook; } -/*@}*/ +/**@}*/ #endif static void _rt_timer_init(rt_timer_t timer, @@ -164,7 +164,7 @@ void rt_timer_dump(rt_list_t timer_heads[]) * @addtogroup Clock */ -/*@{*/ +/**@{*/ /** * This function will initialize a timer, normally this function is used to @@ -710,4 +710,4 @@ void rt_system_timer_thread_init(void) #endif } -/*@}*/ +/**@}*/ -- GitLab