From 6d77c7fc8e71426b22b78eaf84d46a758c48a2a0 Mon Sep 17 00:00:00 2001 From: Amanda Butler Date: Mon, 8 Jan 2018 17:50:38 -0600 Subject: [PATCH] Copy edit RtosTimer.h Copy edit file for active voice. --- rtos/RtosTimer.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/rtos/RtosTimer.h b/rtos/RtosTimer.h index fd4a9396cb..27e0c5aeee 100644 --- a/rtos/RtosTimer.h +++ b/rtos/RtosTimer.h @@ -94,7 +94,7 @@ public: @deprecated The RtosTimer has been superseded by the EventQueue. See RtosTimer.h for more details - @note This function cannot be called from ISR context. + @note You cannot call this function from ISR context. */ MBED_DEPRECATED_SINCE("mbed-os-5.1", "Replaced with RtosTimer(Callback, os_timer_type)") @@ -110,7 +110,7 @@ public: @deprecated The RtosTimer has been superseded by the EventQueue. See RtosTimer.h for more details - @note This function cannot be called from ISR context. + @note You cannot call this function from ISR context. */ MBED_DEPRECATED_SINCE("mbed-os-5.2", "The RtosTimer has been superseded by the EventQueue. See RtosTimer.h for more details") @@ -128,7 +128,7 @@ public: @deprecated The RtosTimer has been superseded by the EventQueue. See RtosTimer.h for more details - @note This function cannot be called from ISR context. + @note You cannot call this function from ISR context. */ template MBED_DEPRECATED_SINCE("mbed-os-5.1", @@ -147,7 +147,7 @@ public: @a osErrorParameter internal error. @a osErrorResource the timer is not running. - @note This function cannot be called from ISR context. + @note You cannot call this function from ISR context. */ osStatus stop(void); @@ -159,13 +159,13 @@ public: @a osErrorParameter internal error or incorrect parameter value. @a osErrorResource internal error (the timer is in an invalid timer state). - @note This function cannot be called from ISR context. + @note You cannot call this function from ISR context. */ osStatus start(uint32_t millisec); /** RtosTimer destructor * - * @note This function cannot be called from ISR context. + * @note You cannot call this function from ISR context. */ ~RtosTimer();