From 2ea1b24eae56636952cdd01fd920e381a29f9b7b Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Wed, 23 Oct 2019 21:16:24 +0200 Subject: [PATCH] sys/xtimer: fix typos --- sys/xtimer/xtimer.c | 2 +- sys/xtimer/xtimer_core.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/xtimer/xtimer.c b/sys/xtimer/xtimer.c index bec49dafcf..1d5a78ffa8 100644 --- a/sys/xtimer/xtimer.c +++ b/sys/xtimer/xtimer.c @@ -241,7 +241,7 @@ void xtimer_now_timex(timex_t *out) 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 * in the thread context * diff --git a/sys/xtimer/xtimer_core.c b/sys/xtimer/xtimer_core.c index 8411558399..de140d7fd5 100644 --- a/sys/xtimer/xtimer_core.c +++ b/sys/xtimer/xtimer_core.c @@ -183,7 +183,7 @@ int _xtimer_set_absolute(xtimer_t *timer, uint32_t target) timer->next = NULL; /* 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 * from setting target up until the call of '_xtimer_now()' above now has not