Remove all trailing whitespace
sed 's/[ \t]*$//' -i **/*.d
This commit is contained in:
parent
3faa5f3bdc
commit
8f89733a86
16 changed files with 114 additions and 114 deletions
|
@ -661,7 +661,7 @@ void yield()
|
|||
to call `switchToTask` will result in task starvation and resource leakage.
|
||||
|
||||
Params:
|
||||
on_interrupt = If specified, is required to
|
||||
on_interrupt = If specified, is required to
|
||||
|
||||
See_Also: `switchToTask`
|
||||
*/
|
||||
|
@ -1042,7 +1042,7 @@ struct Timer {
|
|||
|
||||
/** Resets the timer to the specified timeout
|
||||
*/
|
||||
void rearm(Duration dur, bool periodic = false) nothrow
|
||||
void rearm(Duration dur, bool periodic = false) nothrow
|
||||
in { assert(dur > 0.seconds, "Negative timer duration specified."); }
|
||||
body { m_driver.set(m_id, dur, periodic ? dur : 0.seconds); }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue