From b993eb9d3d6b2de59cb60a6270a13c798ea13a3f Mon Sep 17 00:00:00 2001 From: Aashish chaddha Date: Fri, 12 Oct 2018 10:51:38 -0500 Subject: [PATCH] mutex doc changes --- rtos/Mutex.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rtos/Mutex.h b/rtos/Mutex.h index 3ccc1d8885..b68418d659 100644 --- a/rtos/Mutex.h +++ b/rtos/Mutex.h @@ -82,7 +82,7 @@ public: Wait until a Mutex becomes available. @return status code that indicates the execution status of the function: - @a Status code such as osOK indicates that the mutex has been obtained. + @a osOK the mutex has been obtained. @note You cannot call this function from ISR context. @note This function treats RTOS errors as fatal system errors, so can only return osOK. @@ -144,7 +144,7 @@ public: Unlock the mutex that has previously been locked by the same thread @return status code that indicates the execution status of the function: - @a Status code such as osOK indicates that the mutex has been released. + @a osOK the mutex has been released. @note You cannot call this function from ISR context. @note This function treats RTOS errors as fatal system errors, so can only return osOK.