File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ class Mutex : private mbed::NonCopyable<Mutex> {
82
82
Wait until a Mutex becomes available.
83
83
84
84
@return status code that indicates the execution status of the function:
85
- @a Status code such as osOK indicates that the mutex has been obtained.
85
+ @a osOK the mutex has been obtained.
86
86
87
87
@note You cannot call this function from ISR context.
88
88
@note This function treats RTOS errors as fatal system errors, so can only return osOK.
@@ -144,7 +144,7 @@ class Mutex : private mbed::NonCopyable<Mutex> {
144
144
Unlock the mutex that has previously been locked by the same thread
145
145
146
146
@return status code that indicates the execution status of the function:
147
- @a Status code such as osOK indicates that the mutex has been released.
147
+ @a osOK the mutex has been released.
148
148
149
149
@note You cannot call this function from ISR context.
150
150
@note This function treats RTOS errors as fatal system errors, so can only return osOK.
You can’t perform that action at this time.
0 commit comments