fleshing out doc
This commit is contained in:
parent
022ba1e5bf
commit
2594aadb14
|
@ -45,9 +45,10 @@ type Expression struct {
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
|
|
||||||
// Parse() returns a new Expression pointer. It expects
|
// Returns a new Expression pointer. It expects a well-formed cron expression.
|
||||||
// a well-formed cron expression. If a malformed cron expression is
|
// If a malformed cron expression is supplied, the result is undefined. See
|
||||||
// supplied, the result is undefined.
|
// <https://github.com/gorhill/cronexpr#implementation> for documentation
|
||||||
|
// about what is a well-formed cron expression from this library point of view.
|
||||||
func Parse(cronLine string) *Expression {
|
func Parse(cronLine string) *Expression {
|
||||||
cronLineNormalized := cronNormalize(cronLine)
|
cronLineNormalized := cronNormalize(cronLine)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue