Skip to content

Commit 5757b5b

Browse files
authored
Fix weeklyOn() example's explanation
`weeklyOn(1, '8:00')` will be triggered on Mondays, but not Tuesdays.
1 parent 8a12c5f commit 5757b5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scheduling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Method | Description
115115
`->dailyAt('13:00');` | Run the task every day at 13:00
116116
`->twiceDaily(1, 13);` | Run the task daily at 1:00 & 13:00
117117
`->weekly();` | Run the task every week
118-
`->weeklyOn(1, '8:00');` | Run the task every week on Tuesday at 8:00
118+
`->weeklyOn(1, '8:00');` | Run the task every week on Monday at 8:00
119119
`->monthly();` | Run the task every month
120120
`->monthlyOn(4, '15:00');` | Run the task every month on the 4th at 15:00
121121
`->quarterly();` | Run the task every quarter

0 commit comments

Comments
 (0)