1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

sys/xtimer: fix typo 'occcured' -> 'occurred'

This commit is contained in:
Alexandre Abadie 2020-10-02 08:14:02 +02:00
parent 11aa30625f
commit 8507989931
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -410,7 +410,7 @@ static inline bool xtimer_less64(xtimer_ticks64_t a, xtimer_ticks64_t b);
* @param[in] us timeout in microseconds relative
*
* @return 0, when returned after mutex was locked
* @return -1, when the timeout occcured
* @return -1, when the timeout occurred
*/
int xtimer_mutex_lock_timeout(mutex_t *mutex, uint64_t us);
@ -421,7 +421,7 @@ int xtimer_mutex_lock_timeout(mutex_t *mutex, uint64_t us);
* @param[in] us timeout in microseconds relative
*
* @return 0, when returned after rmutex was locked
* @return -1, when the timeout occcured
* @return -1, when the timeout occurred
*/
int xtimer_rmutex_lock_timeout(rmutex_t *rmutex, uint64_t us);