summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2005-06-05 20:42:46 +0000
committerKevin Ryde <user42@zip.com.au>2005-06-05 20:42:46 +0000
commitb83ecb8fb555ba8664c9af6b970278bef8f4d5fd (patch)
tree230f420a66edd01b97c046418f1cea62ce9158bb
parentcdac1be446dd75c86aedcf94c3be9cf923c5f19f (diff)
downloadguile-b83ecb8fb555ba8664c9af6b970278bef8f4d5fd.tar.gz
(Array Procedures): In array-in-bounds?, correction to example result.
-rw-r--r--doc/ref/api-compound.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ref/api-compound.texi b/doc/ref/api-compound.texi
index 55e6a4419..dbd0a671b 100644
--- a/doc/ref/api-compound.texi
+++ b/doc/ref/api-compound.texi
@@ -1933,7 +1933,7 @@ Return @code{#t} if the given index would be acceptable to
@example
(define a (make-array #f '(1 2) '(3 4)))
-(array-in-bounds? a 2 3) @result{} #f
+(array-in-bounds? a 2 3) @result{} #t
(array-in-bounds? a 0 0) @result{} #f
@end example
@end deffn