1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 19:50:24 +02:00

Fix R6RS fold-left documentation

* doc/ref/r6rs.texi (rnrs lists): Fix documentation of fold-left.
This commit is contained in:
Andy Wingo 2016-06-23 21:39:23 +02:00
parent 3df22933b6
commit 498cd58cb4

View file

@ -724,11 +724,15 @@ These procedures are identical to the ones provided by SRFI-1.
@xref{SRFI-1 Filtering and Partitioning}, for @code{partition}. @xref{SRFI-1 Filtering and Partitioning}, for @code{partition}.
@end deffn @end deffn
@deffn {Scheme Procedure} fold-right combine nil list1 list2 @dots{}
This procedure is identical the @code{fold-right} procedure provided by
SRFI-1. @xref{SRFI-1 Fold and Map}, for documentation.
@end deffn
@deffn {Scheme Procedure} fold-left combine nil list1 list2 @dots{} @deffn {Scheme Procedure} fold-left combine nil list1 list2 @dots{}
@deffnx {Scheme Procedure} fold-right combine nil list1 list2 @dots{} This procedure is like @code{fold} from SRFI-1, but @var{combine} is
These procedures are identical to the @code{fold} and @code{fold-right} called with the seed as the first argument. @xref{SRFI-1 Fold and Map},
procedures provided by SRFI-1. @xref{SRFI-1 Fold and Map}, for for documentation.
documentation.
@end deffn @end deffn
@deffn {Scheme Procedure} remp proc list @deffn {Scheme Procedure} remp proc list