sys/xtimer: fix typos

This commit is contained in:
Kaspar Schleiser 2019-10-23 21:16:24 +02:00
parent 149a98a9aa
commit 2ea1b24eae
2 changed files with 2 additions and 2 deletions

View File

@ -241,7 +241,7 @@ void xtimer_now_timex(timex_t *out)
static void _mutex_timeout(void *arg) static void _mutex_timeout(void *arg)
{ {
/* interupts a disabled because xtimer can spin /* interrupts a disabled because xtimer can spin
* if xtimer_set spins the callback is executed * if xtimer_set spins the callback is executed
* in the thread context * in the thread context
* *

View File

@ -183,7 +183,7 @@ int _xtimer_set_absolute(xtimer_t *timer, uint32_t target)
timer->next = NULL; timer->next = NULL;
/* Ensure that offset is bigger than 'XTIMER_BACKOFF', /* Ensure that offset is bigger than 'XTIMER_BACKOFF',
* 'target - now' will allways be the offset no matter if target < or > now. * 'target - now' will always be the offset no matter if target < or > now.
* *
* This expects that target was not set too close to now and overrun now, so * This expects that target was not set too close to now and overrun now, so
* from setting target up until the call of '_xtimer_now()' above now has not * from setting target up until the call of '_xtimer_now()' above now has not