We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66ca70a commit 95f40aaCopy full SHA for 95f40aa
events/include/events/Event.h
@@ -116,7 +116,7 @@ class Event<void(ArgTs...)> {
116
117
/** Configure the delay of an event
118
*
119
- * @param d Millisecond delay before dispatching the event
+ * @param d Chrono duration delay before dispatching the event. For example delay(5s)
120
*/
121
void delay(duration d)
122
{
@@ -138,7 +138,7 @@ class Event<void(ArgTs...)> {
138
139
/** Configure the period of an event
140
141
- * @param p Millisecond period for repeatedly dispatching an event
+ * @param p Chrono duration period for repeatedly dispatching an event. For example period(5s)
142
143
void period(duration p)
144
0 commit comments