From fc7f6c3b68fe9070af4711f5d32ff3ac7f8004ff Mon Sep 17 00:00:00 2001 From: fjmolinas Date: Thu, 16 May 2019 23:17:03 +0200 Subject: [PATCH] sys/xtimer.h: fix typo in xtimer_set_msg --- sys/include/xtimer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/include/xtimer.h b/sys/include/xtimer.h index cb2e630367..3736ddb976 100644 --- a/sys/include/xtimer.h +++ b/sys/include/xtimer.h @@ -213,7 +213,7 @@ static inline void xtimer_periodic_wakeup(xtimer_ticks32_t *last_wakeup, uint32_ * This function sets a timer that will send a message @p offset ticks * from now. * - * The mesage struct specified by msg parameter will not be copied, e.g., it + * The message struct specified by msg parameter will not be copied, e.g., it * needs to point to valid memory until the message has been delivered. * * @param[in] timer timer struct to work with. @@ -231,7 +231,7 @@ static inline void xtimer_set_msg(xtimer_t *timer, uint32_t offset, msg_t *msg, * This function sets a timer that will send a message @p offset microseconds * from now. * - * The mesage struct specified by msg parameter will not be copied, e.g., it + * The message struct specified by msg parameter will not be copied, e.g., it * needs to point to valid memory until the message has been delivered. * * @param[in] timer timer struct to work with.