File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ namespace rtos {
37
37
*/
38
38
39
39
/* * The Queue class represents a collection of objects that are stored first by
40
- * order of priorty , and then in first-in, first-out (FIFO) order.
40
+ * order of priority , and then in first-in, first-out (FIFO) order.
41
41
*
42
42
* You can use a queue when you need to store data and then access it in the same
43
43
* order that it has been stored. The order in which you retrieve the data is in
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ class RtosTimer : private mbed::NonCopyable<RtosTimer> {
88
88
public:
89
89
/* * Create timer.
90
90
@param func function to be executed by this timer.
91
- @param type osTimerOnce for one-shot or osTimerPeriodic for periodic behaviour . (default: osTimerPeriodic)
91
+ @param type osTimerOnce for one-shot or osTimerPeriodic for periodic behavior . (default: osTimerPeriodic)
92
92
@param argument argument to the timer call back function. (default: NULL)
93
93
@deprecated Replaced with RtosTimer(Callback<void()>, os_timer_type)
94
94
@deprecated
@@ -107,7 +107,7 @@ class RtosTimer : private mbed::NonCopyable<RtosTimer> {
107
107
108
108
/* * Create timer.
109
109
@param func function to be executed by this timer.
110
- @param type osTimerOnce for one-shot or osTimerPeriodic for periodic behaviour . (default: osTimerPeriodic)
110
+ @param type osTimerOnce for one-shot or osTimerPeriodic for periodic behavior . (default: osTimerPeriodic)
111
111
@deprecated
112
112
The RtosTimer has been superseded by the EventQueue. See RtosTimer.h for more details
113
113
@@ -123,7 +123,7 @@ class RtosTimer : private mbed::NonCopyable<RtosTimer> {
123
123
/* * Create timer.
124
124
@param obj pointer to the object to call the member function on.
125
125
@param method member function to be executed by this timer.
126
- @param type osTimerOnce for one-shot or osTimerPeriodic for periodic behaviour . (default: osTimerPeriodic)
126
+ @param type osTimerOnce for one-shot or osTimerPeriodic for periodic behavior . (default: osTimerPeriodic)
127
127
@deprecated
128
128
The RtosTimer constructor does not support cv-qualifiers. Replaced by
129
129
RtosTimer(callback(obj, method), os_timer_type).
You can’t perform that action at this time.
0 commit comments