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

Merge pull request #6796 from brummer-simon/sema-doc-fix_typo_in_return_value

Sema: Fix Typo related to return values in documentation.
This commit is contained in:
Martine Lenders 2017-03-27 13:51:42 +02:00 committed by GitHub
commit 783b4de6ff

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.
*/