1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-15 09:33:50 +01:00

sys/ztimer: fix small typo in doc

This commit is contained in:
krzysztof-cabaj 2025-02-12 14:47:50 +01:00
parent 650ef7beea
commit 07c6630f45

View File

@ -404,7 +404,7 @@ void ztimer_handler(ztimer_clock_t *clock);
/** /**
* @brief Acquire a 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 * If time differences are measured using @ref ztimer_now this will make
* sure ztimer won't turn of the clock source. * 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 * @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. * anymore and may be turned off.
* *
* @param[in] clock ztimer clock to operate on * @param[in] clock ztimer clock to operate on