Skip to content

Commit 3a6eb7f

Browse files
authored
Merge pull request #253 from cettoana/patch-1
docs: remove redundant asterisk in example
2 parents e843a09 + 7d0ec89 commit 3a6eb7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ them in their own goroutines.
2121
c := cron.New()
2222
c.AddFunc("30 * * * *", func() { fmt.Println("Every hour on the half hour") })
2323
c.AddFunc("30 3-6,20-23 * * *", func() { fmt.Println(".. in the range 3-6am, 8-11pm") })
24-
c.AddFunc("CRON_TZ=Asia/Tokyo 30 04 * * * *", func() { fmt.Println("Runs at 04:30 Tokyo time every day") })
24+
c.AddFunc("CRON_TZ=Asia/Tokyo 30 04 * * *", func() { fmt.Println("Runs at 04:30 Tokyo time every day") })
2525
c.AddFunc("@hourly", func() { fmt.Println("Every hour, starting an hour from now") })
2626
c.AddFunc("@every 1h30m", func() { fmt.Println("Every hour thirty, starting an hour thirty from now") })
2727
c.Start()

0 commit comments

Comments
 (0)