File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ class ConditionVariable : private mbed::NonCopyable<ConditionVariable> {
120
120
public:
121
121
/* * Create and Initialize a ConditionVariable object
122
122
*
123
- * @note This function may be called from ISR context.
123
+ * @note You may call this function from ISR context.
124
124
*/
125
125
ConditionVariable (Mutex &mutex);
126
126
@@ -146,7 +146,7 @@ class ConditionVariable : private mbed::NonCopyable<ConditionVariable> {
146
146
* mutex.unlock();
147
147
* @endcode
148
148
*
149
- * @note This function cannot be called from ISR context.
149
+ * @note You cannot call this function from ISR context.
150
150
*/
151
151
void wait ();
152
152
@@ -182,7 +182,7 @@ class ConditionVariable : private mbed::NonCopyable<ConditionVariable> {
182
182
* mutex.unlock();
183
183
* @endcode
184
184
*
185
- * @note This function cannot be called from ISR context.
185
+ * @note You cannot call this function from ISR context.
186
186
*/
187
187
bool wait_for (uint32_t millisec);
188
188
@@ -204,7 +204,7 @@ class ConditionVariable : private mbed::NonCopyable<ConditionVariable> {
204
204
205
205
/* * ConditionVariable destructor
206
206
*
207
- * @note This function may be called from ISR context.
207
+ * @note You may call this function from ISR context.
208
208
*/
209
209
~ConditionVariable ();
210
210
You can’t perform that action at this time.
0 commit comments