summaryrefslogtreecommitdiffstats
path: root/modules/cron
diff options
context:
space:
mode:
Diffstat (limited to 'modules/cron')
-rw-r--r--modules/cron/doc.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/cron/doc.go b/modules/cron/doc.go
index dbdf50127a..258fe1eff8 100644
--- a/modules/cron/doc.go
+++ b/modules/cron/doc.go
@@ -7,9 +7,9 @@ Callers may register Funcs to be invoked on a given schedule. Cron will run
them in their own goroutines.
c := cron.New()
- c.AddFunc("0 30 * * * *", func() { fmt.Println("Every hour on the half hour") })
- c.AddFunc("@hourly", func() { fmt.Println("Every hour") })
- c.AddFunc("@every 1h30m", func() { fmt.Println("Every hour thirty") })
+ c.AddFunc("Every hour on the half hour","0 30 * * * *", func() { fmt.Println("Every hour on the half hour") })
+ c.AddFunc("Every hour","@hourly", func() { fmt.Println("Every hour") })
+ c.AddFunc("Every hour and a half","@every 1h30m", func() { fmt.Println("Every hour thirty") })
c.Start()
..
// Funcs are invoked in their own goroutine, asynchronously.