Doc: 'unfold-right' takes a tail not a tail generator.
authorIan Price <ianprice90@googlemail.com>
Sat, 19 Oct 2013 21:59:46 +0000 (22:59 +0100)
committerIan Price <ianprice90@googlemail.com>
Sat, 19 Oct 2013 22:17:29 +0000 (23:17 +0100)
Reported by David Kastrup <dak@gnu.org>.

* doc/ref/srfi-modules.texi (SRFI-1 Fold and Map): Change argument
  name, and default value.

doc/ref/srfi-modules.texi

index 31407e8..b6d5248 100644 (file)
@@ -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