Browse Source

Comment update to clarify local time zone usage

Wannes 9 years ago
parent
commit
32016e3a79
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cron.go

+ 1 - 1
cron.go

@@ -70,7 +70,7 @@ func (s byTime) Less(i, j int) bool {
 	return s[i].Next.Before(s[j].Next)
 	return s[i].Next.Before(s[j].Next)
 }
 }
 
 
-// New returns a new Cron job runner.
+// New returns a new Cron job runner, in the Local time zone.
 func New() *Cron {
 func New() *Cron {
 	return NewWithLocation(time.Now().Location())
 	return NewWithLocation(time.Now().Location())
 }
 }