Steve Phillips пре 13 година
родитељ
комит
f18f4469ea
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -17,7 +17,7 @@ c.Start()
 // Funcs are invoked in their own goroutine, asynchronously.
 ...
 // Funcs may also be added to a running Cron
-c.Add("@daily, func() { fmt.Println("Every day") })
+c.Add("@daily", func() { fmt.Println("Every day") })
 ..
 c.Stop()  // Stop the scheduler (does not stop any jobs already running).
 ```