File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -590,9 +590,9 @@ The return value of the timer callback function will be ignored and has
590590no effect, so for performance reasons you're recommended to not return
591591any excessive data structures.
592592
593- Unlike [ ` addTimer() ` ] ( #addtimer ) , this method will ensure the the
594- callback will be invoked infinitely after the given interval or until you
595- invoke [ ` cancelTimer ` ] ( #canceltimer ) .
593+ Unlike [ ` addTimer() ` ] ( #addtimer ) , this method will ensure the callback
594+ will be invoked infinitely after the given interval or until you invoke
595+ [ ` cancelTimer ` ] ( #canceltimer ) .
596596
597597``` php
598598$timer = $loop->addPeriodicTimer(0.1, function () {
Original file line number Diff line number Diff line change @@ -213,9 +213,9 @@ public function addTimer($interval, $callback);
213213 * no effect, so for performance reasons you're recommended to not return
214214 * any excessive data structures.
215215 *
216- * Unlike [`addTimer()`](#addtimer), this method will ensure the the
217- * callback will be invoked infinitely after the given interval or until you
218- * invoke [`cancelTimer`](#canceltimer).
216+ * Unlike [`addTimer()`](#addtimer), this method will ensure the callback
217+ * will be invoked infinitely after the given interval or until you invoke
218+ * [`cancelTimer`](#canceltimer).
219219 *
220220 * ```php
221221 * $timer = $loop->addPeriodicTimer(0.1, function () {
You can’t perform that action at this time.
0 commit comments