From 2594aadb14be86d17cc156ffdeef8d58f7c9bc98 Mon Sep 17 00:00:00 2001 From: gorhill Date: Sat, 31 Aug 2013 09:05:45 -0400 Subject: [PATCH] fleshing out doc --- cronexpr.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cronexpr.go b/cronexpr.go index 5909aa1..2cca953 100644 --- a/cronexpr.go +++ b/cronexpr.go @@ -45,9 +45,10 @@ type Expression struct { /******************************************************************************/ -// Parse() returns a new Expression pointer. It expects -// a well-formed cron expression. If a malformed cron expression is -// supplied, the result is undefined. +// Returns a new Expression pointer. It expects a well-formed cron expression. +// If a malformed cron expression is supplied, the result is undefined. See +// for documentation +// about what is a well-formed cron expression from this library point of view. func Parse(cronLine string) *Expression { cronLineNormalized := cronNormalize(cronLine)