From f79d4db011fed3952f6d2fc53531e15d924a0d4d Mon Sep 17 00:00:00 2001 From: David Lin Date: Sat, 27 Jun 2020 19:10:48 +0800 Subject: [PATCH] Update tos_stopwatch.h Fixed some wrong notes. --- kernel/core/include/tos_stopwatch.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel/core/include/tos_stopwatch.h b/kernel/core/include/tos_stopwatch.h index 340b8542..507dedc6 100644 --- a/kernel/core/include/tos_stopwatch.h +++ b/kernel/core/include/tos_stopwatch.h @@ -105,7 +105,7 @@ __API__ void tos_stopwatch_delay_ms(k_time_t millisec); * * @attention * - * @param[in] stopwatch ticks remain. + * @param[in] stopwatch the stopwatch. * * @return ticks remain */ @@ -116,7 +116,7 @@ __API__ k_tick_t tos_stopwatch_remain(k_stopwatch_t *stopwatch); * * @attention * - * @param[in] stopwatch milliseconds remain. + * @param[in] stopwatch the stopwatch. * * @return milliseconds remain */ @@ -127,7 +127,7 @@ __API__ k_time_t tos_stopwatch_remain_ms(k_stopwatch_t *stopwatch); * * @attention * - * @param[in] stopwatch milliseconds remain. + * @param[in] stopwatch the stopwatch. * * @return whether the stopwatch is expired * @retval #K_TRUE the stopwatch is expired.