1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 06:20:23 +02:00

(SRFI-1 Fold and Map): Fix typo "... variant of fold", add "f" to fold

call shown.
This commit is contained in:
Kevin Ryde 2003-05-03 22:36:36 +00:00
parent e508c8630c
commit 1ae7b87851

View file

@ -431,8 +431,8 @@ instead of the list elements.
@end deffn
@deffn {Scheme Procedure} reduce f ridentity lst
@code{reduce} is a variant of @code{reduce}. If @var{lst} is
@code{()}, @var{ridentity} is returned. Otherwise, @code{(fold (car
@code{reduce} is a variant of @code{fold}. If @var{lst} is
@code{()}, @var{ridentity} is returned. Otherwise, @code{(fold f (car
@var{lst}) (cdr @var{lst}))} is returned.
@end deffn