From 172f70e6d23bff74138b6fcd60ba3934fa6c00ed Mon Sep 17 00:00:00 2001 From: Dale Mellor Date: Fri, 3 Sep 2021 12:33:35 +0100 Subject: documentation: Bug fix in a simple example. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- doc/mcron.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3