From 1a6c1978db01f4b5b820dc3f7c7111575b30f0a1 Mon Sep 17 00:00:00 2001 From: gorhill Date: Thu, 29 Aug 2013 19:55:54 -0400 Subject: [PATCH] fleshing out --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b9b8cb2..0d23b1b 100644 --- a/README.md +++ b/README.md @@ -64,8 +64,8 @@ Predefined cron expressions Other details ------------- -* If only five fields are present, a wildcard year field is appended, that is, `* * * * *` internally become `0 * * * * * *`. -* If only six field are present, `0` is prepended as second field, that is, `* * * * * 2013` internally become `0 * * * * * 2013`. +* If only six field are present, a `0` second field is prepended, that is, `* * * * * 2013` internally become `0 * * * * * 2013`. +* If only five fields are present, a `0` second field is prepended and a wildcard year field is appended, that is, `* * * * *` internally become `0 * * * * * *`. * Domain for day-of-week field is [0-7] instead of [0-6], 7 being Sunday (like 0). This to comply with http://linux.die.net/man/5/crontab#. * As of now, the behavior of the code is undetermined if a malformed cron expression is supplied