summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Price <ianprice90@googlemail.com>2013-10-19 22:59:46 +0100
committerIan Price <ianprice90@googlemail.com>2013-10-19 23:17:29 +0100
commit9cdf0ac603303ed8940a29d4fc4d8454f97b79aa (patch)
treeccec4a9e40b8a700537fa38ab87d554fe0ac2dd6
parentc9e3266c4b9420a8138d277dd5f3cfe3e208e152 (diff)
downloadguile-9cdf0ac603303ed8940a29d4fc4d8454f97b79aa.tar.gz
Doc: 'unfold-right' takes a tail not a tail generator.
Reported by David Kastrup <dak@gnu.org>. * doc/ref/srfi-modules.texi (SRFI-1 Fold and Map): Change argument name, and default value.
-rw-r--r--doc/ref/srfi-modules.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ref/srfi-modules.texi b/doc/ref/srfi-modules.texi
index 31407e828..b6d524879 100644
--- a/doc/ref/srfi-modules.texi
+++ b/doc/ref/srfi-modules.texi
@@ -676,8 +676,8 @@ Maps each seed value to next seed value.
@item seed
The state value for the unfold.
-@item tail-gen
-Creates the tail of the list; defaults to @code{(lambda (x) '())}.
+@item tail
+The tail of the list; defaults to @code{'()}.
@end table
@end deffn