aboutsummaryrefslogtreecommitdiff
path: root/include/apos/timer.h
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2022-06-09 23:50:14 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2022-06-09 23:50:14 +0300
commitda8eeb7695a4803d1d45c8c26c05a51fb1ba1e55 (patch)
tree85323057da02893e351426c60f2c5cfd5603b428 /include/apos/timer.h
parente30cd339e271b0d16dbecf6c521fa06c3a05e3f1 (diff)
downloadkmi-da8eeb7695a4803d1d45c8c26c05a51fb1ba1e55.tar.gz
kmi-da8eeb7695a4803d1d45c8c26c05a51fb1ba1e55.zip
continue documentation
Diffstat (limited to 'include/apos/timer.h')
-rw-r--r--include/apos/timer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/apos/timer.h b/include/apos/timer.h
index b21a182..98d9f36 100644
--- a/include/apos/timer.h
+++ b/include/apos/timer.h
@@ -126,7 +126,7 @@ static inline ticks_t msecs_to_ticks(tunit_t msecs)
*/
static inline ticks_t secs_to_ticks(tunit_t secs)
{
- /* TODO: likely not a problem on 64bit systems, not sure how to handle situation on
+ /* \todo: likely not a problem on 64bit systems, not sure how to handle situation on
* 32bit */
return msecs_to_ticks(secs * 1000);
}