Skip to content

Commit

Permalink
escape asterisk so it will display in markdown file (#2394)
Browse files Browse the repository at this point in the history
  • Loading branch information
bretthoes committed Jun 5, 2024
1 parent 6bf4347 commit b8c7b65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/documentation/quartz-1.x/tutorial/crontriggers.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ An example of a complete cron-expression is the string "0 0 12 ? * WED" - which
Individual sub-expressions can contain ranges and/or lists. For example, the day of week field in the previous (which reads "WED")
example could be replaces with "MON-FRI", "MON, WED, FRI", or even "MON-WED,SAT".

Wild-cards (the '*' character) can be used to say "every" possible value of this field. Therefore the '*' character in the
"Month" field of the previous example simply means "every month". A '*' in the Day-Of-Week field would obviously mean "every day of the week".
Wild-cards (the '\*' character) can be used to say "every" possible value of this field. Therefore the '\*' character in the
"Month" field of the previous example simply means "every month". A '\*' in the Day-Of-Week field would obviously mean "every day of the week".

All of the fields have a set of valid values that can be specified. These values should be fairly obvious - such as the numbers
0 to 59 for seconds and minutes, and the values 0 to 23 for hours. Day-of-Month can be any value 1-31, but you need to be careful
Expand Down

0 comments on commit b8c7b65

Please sign in to comment.