From c23709c60a65c2ef03545d086ef5db13a84b215a Mon Sep 17 00:00:00 2001 From: Amanda Butler Date: Mon, 8 Jan 2018 17:36:24 -0600 Subject: [PATCH] Copy edit ConditionVariable.h Copy edit docs changes for active voice. --- rtos/ConditionVariable.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rtos/ConditionVariable.h b/rtos/ConditionVariable.h index 6debad61a3..c69722d897 100644 --- a/rtos/ConditionVariable.h +++ b/rtos/ConditionVariable.h @@ -120,7 +120,7 @@ class ConditionVariable : private mbed::NonCopyable { 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();