event/timeout.h: fix typos in doc

This commit is contained in:
Martine Lenders 2021-07-21 12:25:05 +02:00
parent 4f905bfa8c
commit bf99bcc8d2
No known key found for this signature in database
GPG Key ID: 2134D77A5336DD80

View File

@ -91,14 +91,14 @@ void event_timeout_init(event_timeout_t *event_timeout, event_queue_t *queue,
* @brief Set a timeout
*
* This will make the event as configured in @p event_timeout be triggered
* after @p timeout microseconds (if using @ref xtimer) or the the @ref
* after @p timeout microseconds (if using @ref xtimer) or the @ref
* ztimer_clock_t ticks.
*
* @note: the used event_timeout struct must stay valid until after the timeout
* event has been processed!
*
* @param[in] event_timeout event_timout context object to use
* @param[in] timeout timeout in microseconds ot the ztimer_clock_t
* @param[in] timeout timeout in microseconds or the ztimer_clock_t
* ticks units
*/
void event_timeout_set(event_timeout_t *event_timeout, uint32_t timeout);