From 07c6630f45cb7cee06a99f5f5c57aad67a910d19 Mon Sep 17 00:00:00 2001 From: krzysztof-cabaj Date: Wed, 12 Feb 2025 14:47:50 +0100 Subject: [PATCH] sys/ztimer: fix small typo in doc --- sys/include/ztimer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/include/ztimer.h b/sys/include/ztimer.h index 24efb37b28..a49aa9a519 100644 --- a/sys/include/ztimer.h +++ b/sys/include/ztimer.h @@ -404,7 +404,7 @@ void ztimer_handler(ztimer_clock_t *clock); /** * @brief Acquire a clock * - * This will indicate the the underlying clock is required to be running. + * This will indicate the underlying clock is required to be running. * If time differences are measured using @ref ztimer_now this will make * sure ztimer won't turn of the clock source. * @@ -425,7 +425,7 @@ static inline bool ztimer_acquire(ztimer_clock_t *clock) /** * @brief Release a clock * - * This will indicate the the underlying clock isn't required to be running + * This will indicate the underlying clock isn't required to be running * anymore and may be turned off. * * @param[in] clock ztimer clock to operate on