Fix erroneous comment

This commit is contained in:
Kevoot 2018-06-26 20:39:06 -04:00
parent 73e37d1ba2
commit 76435da16d

View File

@ -39,6 +39,6 @@ void semaphoreWait(Semaphore * s);
/** /**
* @brief Attempts to get lock without waiting. * @brief Attempts to get lock without waiting.
* @param s Semaphore object. * @param s Semaphore object.
* @return 1 if no wait is needed for lock, 0 otherwise. * @return true if no wait and successful lock, false otherwise.
*/ */
bool semaphoreTryWait(Semaphore * s); bool semaphoreTryWait(Semaphore * s);