diff options
author | Andy Wingo <wingo@pobox.com> | 2011-05-05 14:09:29 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2011-05-05 14:09:29 +0200 |
commit | 891a1851a1e0e47560cf99cf76e9478d77e1a7db (patch) | |
tree | 8d00ba1b7f14b75005285d86abba3ea05b4f1767 /doc/ref/api-control.texi | |
parent | 1903eae4c9ab97b575dad4ab1f5cf05436d84ab3 (diff) | |
parent | eae2438d2bd1d9a0e0aaa052abb8b36b2d073850 (diff) | |
download | guile-891a1851a1e0e47560cf99cf76e9478d77e1a7db.tar.gz |
Merge remote-tracking branch 'origin/stable-2.0'
Diffstat (limited to 'doc/ref/api-control.texi')
-rw-r--r-- | doc/ref/api-control.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ref/api-control.texi b/doc/ref/api-control.texi index 1dde8ea9d..4e13527c1 100644 --- a/doc/ref/api-control.texi +++ b/doc/ref/api-control.texi @@ -290,7 +290,7 @@ expression, as multiple values. Otherwise if it terminates by a call to @example (while #f (error "not reached")) @result{} #f (while #t (break)) @result{} #t -(while #f (break 1 2 3)) @result{} 1 2 3 +(while #t (break 1 2 3)) @result{} 1 2 3 @end example Each @code{while} form gets its own @code{break} and @code{continue} |