fix break example
authorAndy Wingo <wingo@pobox.com>
Thu, 28 Apr 2011 19:33:12 +0000 (21:33 +0200)
committerAndy Wingo <wingo@pobox.com>
Thu, 28 Apr 2011 19:33:12 +0000 (21:33 +0200)
* doc/ref/api-control.texi (while do): Fix a break example.

doc/ref/api-control.texi

index 1dde8ea..4e13527 100644 (file)
@@ -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}