Skip to content

Commit

Permalink
Fix last weekday of the month example expressions in documentation (#314
Browse files Browse the repository at this point in the history
)
  • Loading branch information
harrisiirak committed Mar 6, 2023
1 parent a8b96d8 commit af1ea50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,13 +163,13 @@ For example, the following expression will run on the last monday of the month
at midnight:

```
0 0 * * * 1L
0 0 0 * * 1L
```

The library also supports combining `L` expressions with other weekday
expressions. For example, the following cron will run every Monday as well
as the last Wednesday of the month:

```
0 0 * * * 1,3L
0 0 0 * * 1,3L
```

0 comments on commit af1ea50

Please sign in to comment.