From 1c9996c2046d53c9f93ec207af9f259302260a2d Mon Sep 17 00:00:00 2001 From: Lonnie Ezell Date: Tue, 19 Mar 2024 10:44:40 -0500 Subject: [PATCH] Update docs/basic-usage.md --- docs/basic-usage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/basic-usage.md b/docs/basic-usage.md index 177196e..d9d08bd 100644 --- a/docs/basic-usage.md +++ b/docs/basic-usage.md @@ -110,7 +110,7 @@ There are a number of ways available to specify how often the task is called. | `->saturdays('3:15am')` | Runs every Saturday at midnight, unless time passed in. | | `->monthly('12:21pm')` | Runs the first day of every month at 12:00am unless time passed in. | | `->daysOfMonth([1,15])` | Runs only on days 1 and 15. | -| `->everyMonth(4)` | Runs every 4 month. | +| `->everyMonth(4)` | Runs every 4 months. | | `->betweenMonths(4,7)` | Runs between months 4 and 7. | | `->months([1,7])` | Runs only on January and July. | | `->quarterly('5:00am')` | Runs the first day of each quarter (Jan 1, Apr 1, July 1, Oct 1) |