Skip to content

Commit 1d35cce

Browse files
author
Amanda Butler
authored
Copy edit Mutex.h
Copy edit document for active voice and consistent branding.
1 parent 8f17560 commit 1d35cce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rtos/Mutex.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class Mutex;
4141
* @code
4242
* void foo(Mutex &m) {
4343
* ScopedMutexLock lock(m);
44-
* // Code in this block will be protected by Mutex lock
44+
* // Mutex lock protects code in this block
4545
* }
4646
* @endcode
4747
*/
@@ -56,7 +56,7 @@ typedef mbed::ScopedLock<Mutex> ScopedMutexLock;
5656
This is for example used to protect access to a shared resource.
5757
5858
@note
59-
Memory considerations: The mutex control structures will be created on current thread's stack, both for the mbed OS
59+
Memory considerations: The mutex control structures will be created on current thread's stack, both for the Mbed OS
6060
and underlying RTOS objects (static or dynamic RTOS memory pools are not being used).
6161
*/
6262
class Mutex : private mbed::NonCopyable<Mutex> {

0 commit comments

Comments
 (0)