Skip to content

Commit 66bcee6

Browse files
committed
revert changes to cron expressions topic
1 parent c2dc332 commit 66bcee6

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

docs/reference/cron-expressions.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,4 +149,22 @@ The following examples show valid cron expressions to schedule checking for upda
149149

150150
```
151151
30 11 * * *
152-
`
152+
```
153+
154+
- At 6:00 PM on the fourth Monday of every month:
155+
156+
```
157+
0 18 ? * 2#4
158+
```
159+
160+
- At midnight on the last day of every month:
161+
162+
```
163+
0 0 L * ?
164+
```
165+
166+
- After 1 hour and 45 minutes, and then every interval following that:
167+
168+
```
169+
@every 1h45m
170+
```

0 commit comments

Comments
 (0)