Browse Source

Merge pull request #1 from elimisteve/patch-1

Missing double-quote :-)
Rob Figueiredo 13 years ago
parent
commit
c10d7be19a
1 changed files with 1 additions and 1 deletions
  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).
 ```