Skip to content

Commit c23709c

Browse files
author
Amanda Butler
authored
Copy edit ConditionVariable.h
Copy edit docs changes for active voice.
1 parent 71555a9 commit c23709c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

rtos/ConditionVariable.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ class ConditionVariable : private mbed::NonCopyable<ConditionVariable> {
120120
public:
121121
/** Create and Initialize a ConditionVariable object
122122
*
123-
* @note This function may be called from ISR context.
123+
* @note You may call this function from ISR context.
124124
*/
125125
ConditionVariable(Mutex &mutex);
126126

@@ -146,7 +146,7 @@ class ConditionVariable : private mbed::NonCopyable<ConditionVariable> {
146146
* mutex.unlock();
147147
* @endcode
148148
*
149-
* @note This function cannot be called from ISR context.
149+
* @note You cannot call this function from ISR context.
150150
*/
151151
void wait();
152152

@@ -182,7 +182,7 @@ class ConditionVariable : private mbed::NonCopyable<ConditionVariable> {
182182
* mutex.unlock();
183183
* @endcode
184184
*
185-
* @note This function cannot be called from ISR context.
185+
* @note You cannot call this function from ISR context.
186186
*/
187187
bool wait_for(uint32_t millisec);
188188

@@ -204,7 +204,7 @@ class ConditionVariable : private mbed::NonCopyable<ConditionVariable> {
204204

205205
/** ConditionVariable destructor
206206
*
207-
* @note This function may be called from ISR context.
207+
* @note You may call this function from ISR context.
208208
*/
209209
~ConditionVariable();
210210

0 commit comments

Comments
 (0)