diff options
author | Julian Graham <julian@transmetropolitan.(none)> | 2009-01-20 10:25:04 -0500 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2009-02-11 23:33:26 +0100 |
commit | 8fc9367bbd537e93067a7aa603334f518140e6f7 (patch) | |
tree | d1cf84d7d6d8de35d006ab6bc657407695d4ac3e | |
parent | f8d80072759961eaecfa95e4f9446a5dc1016ca8 (diff) | |
download | guile-8fc9367bbd537e93067a7aa603334f518140e6f7.tar.gz |
Update SRFI-11 docs to use correct name for let*-values.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | doc/ref/srfi-modules.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/ref/srfi-modules.texi b/doc/ref/srfi-modules.texi index ae73dbae5..93fbc2051 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 @@ -1513,9 +1513,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. @@ -1532,7 +1532,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. |