summaryrefslogtreecommitdiff
path: root/doc/ref/compiler.texi
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2010-08-27 09:16:44 -0700
committerAndy Wingo <wingo@pobox.com>2010-08-27 09:16:44 -0700
commit172988eeb4445ca5408be55a9888f7c2d59a316b (patch)
tree46edaab219197632bab077a71f1f674f258b70dc /doc/ref/compiler.texi
parent6832604efa0f175a70be700624c365547fb27878 (diff)
downloadguile-172988eeb4445ca5408be55a9888f7c2d59a316b.tar.gz
fix <letrec> docs
* doc/ref/compiler.texi (Tree-IL): Fix docs for external representation of letrec. Thanks to No Itisnt.
Diffstat (limited to 'doc/ref/compiler.texi')
-rw-r--r--doc/ref/compiler.texi3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/ref/compiler.texi b/doc/ref/compiler.texi
index 494a676d3..b3a1dc673 100644
--- a/doc/ref/compiler.texi
+++ b/doc/ref/compiler.texi
@@ -442,7 +442,8 @@ original binding names, @var{gensyms} are gensyms corresponding to the
@var{exp} is a single Tree-IL expression.
@end deftp
@deftp {Scheme Variable} <letrec> in-order? src names gensyms vals exp
-@deftpx {External Representation} (letrec @var{in-order?} @var{names} @var{gensyms} @var{vals} @var{exp})
+@deftpx {External Representation} (letrec @var{names} @var{gensyms} @var{vals} @var{exp})
+@deftpx {External Representation} (letrec* @var{names} @var{gensyms} @var{vals} @var{exp})
A version of @code{<let>} that creates recursive bindings, like
Scheme's @code{letrec}, or @code{letrec*} if @var{in-order?} is true.
@end deftp