Skip to content

Commit c3b6c4d

Browse files
author
Amanda Butler
authored
Copy edit RtosTimer.h
Copy edit file for active voice.
1 parent 61b2cbb commit c3b6c4d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

rtos/RtosTimer.h

+6-6
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ class RtosTimer : private mbed::NonCopyable<RtosTimer> {
9494
@deprecated
9595
The RtosTimer has been superseded by the EventQueue. See RtosTimer.h for more details
9696
97-
@note This function cannot be called from ISR context.
97+
@note You cannot call this function from ISR context.
9898
*/
9999
MBED_DEPRECATED_SINCE("mbed-os-5.1",
100100
"Replaced with RtosTimer(Callback<void()>, os_timer_type)")
@@ -110,7 +110,7 @@ class RtosTimer : private mbed::NonCopyable<RtosTimer> {
110110
@deprecated
111111
The RtosTimer has been superseded by the EventQueue. See RtosTimer.h for more details
112112
113-
@note This function cannot be called from ISR context.
113+
@note You cannot call this function from ISR context.
114114
*/
115115
MBED_DEPRECATED_SINCE("mbed-os-5.2",
116116
"The RtosTimer has been superseded by the EventQueue. See RtosTimer.h for more details")
@@ -128,7 +128,7 @@ class RtosTimer : private mbed::NonCopyable<RtosTimer> {
128128
@deprecated
129129
The RtosTimer has been superseded by the EventQueue. See RtosTimer.h for more details
130130
131-
@note This function cannot be called from ISR context.
131+
@note You cannot call this function from ISR context.
132132
*/
133133
template <typename T, typename M>
134134
MBED_DEPRECATED_SINCE("mbed-os-5.1",
@@ -147,7 +147,7 @@ class RtosTimer : private mbed::NonCopyable<RtosTimer> {
147147
@a osErrorParameter internal error.
148148
@a osErrorResource the timer is not running.
149149
150-
@note This function cannot be called from ISR context.
150+
@note You cannot call this function from ISR context.
151151
*/
152152
osStatus stop(void);
153153

@@ -159,13 +159,13 @@ class RtosTimer : private mbed::NonCopyable<RtosTimer> {
159159
@a osErrorParameter internal error or incorrect parameter value.
160160
@a osErrorResource internal error (the timer is in an invalid timer state).
161161
162-
@note This function cannot be called from ISR context.
162+
@note You cannot call this function from ISR context.
163163
*/
164164
osStatus start(uint32_t millisec);
165165

166166
/** RtosTimer destructor
167167
*
168-
* @note This function cannot be called from ISR context.
168+
* @note You cannot call this function from ISR context.
169169
*/
170170
~RtosTimer();
171171

0 commit comments

Comments
 (0)