Copy edit ConditionVariable.h

Copy edit docs changes for active voice.
pull/5760/head
Amanda Butler 2018-01-08 17:36:24 -06:00 committed by GitHub
parent 71555a984d
commit c23709c60a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -120,7 +120,7 @@ class ConditionVariable : private mbed::NonCopyable<ConditionVariable> {
public:
/** Create and Initialize a ConditionVariable object
*
* @note This function may be called from ISR context.
* @note You may call this function from ISR context.
*/
ConditionVariable(Mutex &mutex);
@ -146,7 +146,7 @@ public:
* mutex.unlock();
* @endcode
*
* @note This function cannot be called from ISR context.
* @note You cannot call this function from ISR context.
*/
void wait();
@ -182,7 +182,7 @@ public:
* mutex.unlock();
* @endcode
*
* @note This function cannot be called from ISR context.
* @note You cannot call this function from ISR context.
*/
bool wait_for(uint32_t millisec);
@ -204,7 +204,7 @@ public:
/** ConditionVariable destructor
*
* @note This function may be called from ISR context.
* @note You may call this function from ISR context.
*/
~ConditionVariable();