Fix history annotations.

Version changed while the PR was up.
This commit is contained in:
Vincent St-Amour 2015-08-13 11:04:16 -05:00
parent 033d5afb19
commit c50eeeecc9

View File

@ -792,7 +792,7 @@ If @racket[min-count] is a number, the stream is required to have at least that
(for/list ([x (in-syntax #'(1 2 3))]) (for/list ([x (in-syntax #'(1 2 3))])
x)] x)]
@history[#:added "6.2.900.6"]} @history[#:added "6.2.900.9"]}
@defproc[(in-slice [length exact-positive-integer?] [seq sequence?]) @defproc[(in-slice [length exact-positive-integer?] [seq sequence?])
sequence?]{ sequence?]{
@ -802,7 +802,7 @@ If @racket[min-count] is a number, the stream is required to have at least that
@examples[#:eval sequence-evaluator @examples[#:eval sequence-evaluator
(for/list ([e (in-slice 3 (in-range 8))]) e) (for/list ([e (in-slice 3 (in-range 8))]) e)
] ]
@history[#:added "6.2.900.6"] @history[#:added "6.2.900.9"]
} }