1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-26 23:11:19 +01:00

sema: doc: fix typo in error return value

This commit is contained in:
Simon Brummer 2017-03-27 11:52:31 +02:00
parent 4dc2028c9b
commit edc35339c7

View File

@ -91,7 +91,7 @@ void sema_create(sema_t *sema, unsigned int value);
*
* Destroying a semaphore upon which other threads are currently blocked
* will wake the other threads causing the @ref sema_wait (or
* @ref sema_wait_timed) to return error (-ECANCELLED).
* @ref sema_wait_timed) to return error (-ECANCELED).
*
* @param[in] sema The semaphore to destroy.
*/