From 7ea56a88b3b72e92722cf102977832683760533a Mon Sep 17 00:00:00 2001 From: gorhill Date: Fri, 30 Aug 2013 08:19:58 -0400 Subject: [PATCH] fixed comments --- cronexpression.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cronexpression.go b/cronexpression.go index a8f88bf..0d2e73c 100644 --- a/cronexpression.go +++ b/cronexpression.go @@ -100,7 +100,7 @@ func NewCronExpression(cronLine string) *CronExpression { /******************************************************************************/ -// NextTimeFromString() returns the time stamp following fromTime which +// NextTime() returns the time stamp following fromTime which // satisfies the cron expression cronLine. If no matching time stamp is found, // using NoMatch() with the returned time stamp as argument will return true. // @@ -113,7 +113,7 @@ func NextTime(cronLine string, fromTime time.Time) time.Time { /******************************************************************************/ -// NextTimeNFromString() returns the n time stamps following fromTime which +// NextTimeN() returns the n time stamps following fromTime which // satisfy the cron expression cronLine. An empty list is returned if // there is no matching time stamp. //