diff options
author | mpp <mpp@FreeBSD.org> | 1997-02-13 07:16:12 +0000 |
---|---|---|
committer | mpp <mpp@FreeBSD.org> | 1997-02-13 07:16:12 +0000 |
commit | 67a1a81fad31018f4ba4dedfdd0bb710b81cd07d (patch) | |
tree | b14c906a52f86928d2d0e6c0650f97bd1b128118 /usr.sbin/cron | |
parent | 6fc3dd683cc9f9933e220c385c0c22fd4e2a7e9e (diff) | |
download | FreeBSD-src-67a1a81fad31018f4ba4dedfdd0bb710b81cd07d.zip FreeBSD-src-67a1a81fad31018f4ba4dedfdd0bb710b81cd07d.tar.gz |
crontab(5) incorrectly documented the dom/month arguments.
They have valid ranges of 1-31 and 1-12, not 0-31 and 0-12.
Diffstat (limited to 'usr.sbin/cron')
-rw-r--r-- | usr.sbin/cron/crontab/crontab.5 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/cron/crontab/crontab.5 b/usr.sbin/cron/crontab/crontab.5 index 7909427..475ba33 100644 --- a/usr.sbin/cron/crontab/crontab.5 +++ b/usr.sbin/cron/crontab/crontab.5 @@ -97,9 +97,9 @@ minute 0-59 .br hour 0-23 .br -day of month 0-31 +day of month 1-31 .br -month 0-12 (or names, see below) +month 1-12 (or names, see below) .br day of week 0-7 (0 or 7 is Sun, or use names) .br |