fixed borken example

This commit is contained in:
gorhill
2013-09-02 16:03:21 -04:00
parent 164843d2d0
commit 662c567db4

View File

@@ -13,16 +13,16 @@ package cronexpr_test
/******************************************************************************/
import (
"github.com/gorhill/cronexpr"
"fmt"
"time"
"github.com/gorhill/cronexpr"
)
/******************************************************************************/
// ExampleParse
func ExampleParse() {
// ExampleMustParse
func ExampleMustParse() {
t := time.Date(2013, time.August, 31, 0, 0, 0, 0, time.UTC)
nextTimes := cronexpr.MustParse("0 0 29 2 *").NextN(t, 5)
for i := range nextTimes {