Fix typo is documentation

This commit is contained in:
Noel Welsh 2010-12-03 14:35:40 +00:00
parent 899e31e2ce
commit f7d5dc1941
2 changed files with 2 additions and 2 deletions

View File

@ -155,7 +155,7 @@ Creates a fresh @tech{fxvector} of size @racket[(- end start)], with all of the
elements of @racket[vec] from @racket[start] (inclusive) to
@racket[end] (exclusive).}
@defproc[(in-fxvector [vec vector?]
@defproc[(in-fxvector [vec fxvector?]
[start exact-nonnegative-integer? 0]
[stop (or/c exact-nonnegative-integer? #f) #f]
[step (and/c exact-integer? (not/c zero?)) 1])

View File

@ -172,7 +172,7 @@ elements of @racket[vec] from @racket[start] (inclusive) to
@racket[end] (exclusive).}
@defproc[(in-flvector [vec vector?]
@defproc[(in-flvector [vec flvector?]
[start exact-nonnegative-integer? 0]
[stop (or/c exact-nonnegative-integer? #f) #f]
[step (and/c exact-integer? (not/c zero?)) 1])