1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 11:50:28 +02:00

(Array Procedures): In array-in-bounds?, correction to example result.

This commit is contained in:
Kevin Ryde 2005-06-05 20:42:46 +00:00
parent cdac1be446
commit b83ecb8fb5

View file

@ -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