Skip to content

Commit f2fbb35

Browse files
author
Noah Lee
authored
Complement README
1 parent 6e0edbd commit f2fbb35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ Day of week Yes 0-6 or SUN-SAT * / , -
4444
The asterisk indicates that the cron expression matches for all values of the field. E.g., using an asterisk in the 4th field (month) indicates every month.
4545

4646
### Slash ( / )
47-
Slashes describe increments of ranges. For example `3-59/15` in the minute field indicate the third minute of the hour and every 15 minutes thereafter. The form `*/...` is equivalent to the form "first-last/...", that is, an increment over the largest possible range of the field.
47+
Slashes describe increments of ranges. For example `3-59/15` in the minute field indicate the third minute of the hour and every 15 minutes thereafter (i.e. `3`, `18`, `33`, and `48`). The form `*/...` is equivalent to the form "first-last/...", that is, an increment over the largest possible range of the field.
4848

4949
### Comma ( , )
5050
Commas are used to separate items of a list. For example, using `MON,WED,FRI` in the 5th field (day of week) means Mondays, Wednesdays and Fridays.
5151

5252
### Hyphen ( - )
53-
Hyphens define ranges. For example, 2000-2010 indicates every year between 2000 and 2010 AD, inclusive.
53+
Hyphens define ranges. For example, 0-6 indicates every hours between 0 and 6 AM, inclusive.
5454

5555
## Details
5656

0 commit comments

Comments
 (0)