Skip to content

Commit 27689ef

Browse files
committed
Further whitespace fixes
1 parent 1746ed0 commit 27689ef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

events/include/events/Event.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ class Event<void(ArgTs...)> {
143143
/** Configure the period of an event
144144
*
145145
* @param p Period (in milliseconds) for repeatedly dispatching an event, expressed as a Chrono duration.
146-
* Period must be either non_periodic or > 0ms. If an invalid period is supplied then a
146+
* Period must be either non_periodic or > 0ms. If an invalid period is supplied then a
147147
* default non_periodic value is used.
148148
* E.g. period(200ms)
149149
*/
@@ -152,13 +152,13 @@ class Event<void(ArgTs...)> {
152152
if (_event) {
153153
if (p > duration(0)) {
154154
_event->period = p;
155-
155+
156156
} else {
157157
if (p != non_periodic) {
158158
MBED_WARNING(MBED_ERROR_INVALID_ARGUMENT,
159159
"Invalid period specified, defaulting to non_periodic.");
160160
}
161-
_event->period = non_periodic;
161+
_event->period = non_periodic;
162162
}
163163
}
164164
}

0 commit comments

Comments
 (0)