Parcourir la source

Missing double-quote :-)

Steve Phillips il y a 13 ans
Parent
commit
f18f4469ea
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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).
 ```