diff options
Diffstat (limited to 'doc/ref/scheme-ideas.texi')
-rw-r--r-- | doc/ref/scheme-ideas.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ref/scheme-ideas.texi b/doc/ref/scheme-ideas.texi index 99c07b9c4..53f7b6132 100644 --- a/doc/ref/scheme-ideas.texi +++ b/doc/ref/scheme-ideas.texi @@ -1,6 +1,6 @@ @c -*-texinfo-*- @c This is part of the GNU Guile Reference Manual. -@c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004, 2005 +@c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004, 2005, 2012 @c Free Software Foundation, Inc. @c See the file guile.texi for copying conditions. @@ -964,11 +964,11 @@ same as a procedure which returns its last argument, because the evaluation of a procedure invocation expression does not guarantee to evaluate the arguments in order. -@code{if} and @code{cond} (@pxref{if cond case}) provide conditional +@code{if} and @code{cond} (@pxref{Conditionals}) provide conditional evaluation of argument expressions depending on whether one or more conditions evaluate to ``true'' or ``false''. -@code{case} (@pxref{if cond case}) provides conditional evaluation of +@code{case} (@pxref{Conditionals}) provides conditional evaluation of argument expressions depending on whether a variable has one of a specified group of values. |