From c010924a71f942100dc7b4021d5ef1c6decf9c85 Mon Sep 17 00:00:00 2001 From: Julian Graham Date: Tue, 20 Jan 2009 10:25:04 -0500 Subject: [PATCH] Update SRFI-11 docs to use correct name for let*-values. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Ludovic Courtès --- doc/ref/srfi-modules.texi | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/ref/srfi-modules.texi b/doc/ref/srfi-modules.texi index b1fdde1c3..1fa50b209 100644 --- a/doc/ref/srfi-modules.texi +++ b/doc/ref/srfi-modules.texi @@ -29,7 +29,7 @@ get the relevant SRFI documents from the SRFI home page * SRFI-8:: receive. * SRFI-9:: define-record-type. * SRFI-10:: Hash-Comma Reader Extension. -* SRFI-11:: let-values and let-values*. +* SRFI-11:: let-values and let*-values. * SRFI-13:: String library. * SRFI-14:: Character-set library. * SRFI-16:: case-lambda @@ -1514,9 +1514,9 @@ the anonymous and compact syntax of @nicode{#,()} is much better. @cindex SRFI-11 @findex let-values -@findex let-values* +@findex let*-values This module implements the binding forms for multiple values -@code{let-values} and @code{let-values*}. These forms are similar to +@code{let-values} and @code{let*-values}. These forms are similar to @code{let} and @code{let*} (@pxref{Local Bindings}), but they support binding of the values returned by multiple-valued expressions. @@ -1533,7 +1533,7 @@ available. @code{let-values} performs all bindings simultaneously, which means that no expression in the binding clauses may refer to variables bound in the -same clause list. @code{let-values*}, on the other hand, performs the +same clause list. @code{let*-values}, on the other hand, performs the bindings sequentially, just like @code{let*} does for single-valued expressions. -- 2.20.1