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
590
590
no effect, so for performance reasons you're recommended to not return
591
591
any excessive data structures.
592
592
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 ) .
596
596
597
597
``` php
598
598
$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);
213
213
* no effect, so for performance reasons you're recommended to not return
214
214
* any excessive data structures.
215
215
*
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).
219
219
*
220
220
* ```php
221
221
* $timer = $loop->addPeriodicTimer(0.1, function () {
You can’t perform that action at this time.
0 commit comments