summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Wingo <wingo@oblong.net>2009-03-17 16:01:18 +0100
committerAndy Wingo <wingo@oblong.net>2009-03-17 16:01:18 +0100
commita3f2bf81d9a1a8d080dd4b09d59c46995cefb1eb (patch)
treea9684ec4223e824473e91b85b8d03a251738cb93
parentdf22662f5de5585f723943a44e61fb71f7a49190 (diff)
parentc010924a71f942100dc7b4021d5ef1c6decf9c85 (diff)
downloadguile-a3f2bf81d9a1a8d080dd4b09d59c46995cefb1eb.tar.gz
Merge commit 'c010924a71f942100dc7b4021d5ef1c6decf9c85' into vm-check
-rw-r--r--doc/ref/srfi-modules.texi8
1 files 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.