bug-mcron
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] doc: Fix iota expression to match the produced list.


From: Tomas Volf
Subject: [PATCH] doc: Fix iota expression to match the produced list.
Date: Sun, 7 Jul 2024 15:16:47 +0200

* doc/mcron.texi (Guile Syntax): Fix iota example.
---
 doc/mcron.texi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/mcron.texi b/doc/mcron.texi
index 0f67899..da8a628 100644
--- a/doc/mcron.texi
+++ b/doc/mcron.texi
@@ -320,7 +320,7 @@ Similarly to @code{next-second-from}, there are also
 Furthermore, the optional argument can be fulfilled by the Guile
 function @code{(iota count . start step)}, which will provide a list
 of @code{count} values from @code{start}, with the step if given.  For
-example @code{(iota 10 0 2)} will yield the list @code{'(0 2 4 6 8)}.
+example @code{(iota 5 0 2)} will yield the list @code{'(0 2 4 6 8)}.
 
 @findex range
 As a convenience, mcron itself provides a function @code{range}, such
-- 
2.45.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]