Explorar o código

Missing double-quote :-)

Steve Phillips %!s(int64=13) %!d(string=hai) anos
pai
achega
f18f4469ea
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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).
 ```