diff options
author | Dale Mellor <mcron-lsfnyl@rdmp.org> | 2021-09-03 12:33:35 +0100 |
---|---|---|
committer | Dale Mellor <mcron-lsfnyl@rdmp.org> | 2021-09-03 12:33:35 +0100 |
commit | 172f70e6d23bff74138b6fcd60ba3934fa6c00ed (patch) | |
tree | 36c7c4f6d2a74849b5eddc434c9c43e3280a8321 /doc/mcron.texi | |
parent | 97cdae129d48752dad8e7a424cbcacce32a0bfd9 (diff) | |
download | mcron-172f70e6d23bff74138b6fcd60ba3934fa6c00ed.tar.gz mcron-172f70e6d23bff74138b6fcd60ba3934fa6c00ed.tar.bz2 mcron-172f70e6d23bff74138b6fcd60ba3934fa6c00ed.zip |
documentation: Bug fix in a simple example.
The second example under the manual heading Simple Examples does not work.
The call to next-minute-from errs because the second argument must be a
list. It can’t be the raw number 15.
Thanks to Colton Lewis.
* doc/mcron.texi: edited text.
Diffstat (limited to 'doc/mcron.texi')
-rw-r--r-- | doc/mcron.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/mcron.texi b/doc/mcron.texi index 70ab38c..dc2467b 100644 --- a/doc/mcron.texi +++ b/doc/mcron.texi @@ -214,7 +214,7 @@ hours? Edit the file to read (job '(next-minute-from (next-hour (range 0 24 2)) - 15) + '(15)) "my-program") @end example |