Change stream-take description from "list" to "stream" (#2449)

This commit is contained in:
Winny 2019-01-10 10:19:10 -06:00 committed by Ben Greenman
parent 7d002c1c36
commit 7edd07fe83

View File

@ -1124,7 +1124,7 @@ stream, but plain lists can be used as streams, and functions such as
@defproc[(stream-take [s stream?] [i exact-nonnegative-integer?])
stream?]{
Returns a list of the first @racket[i] elements of @racket[s].
Returns a stream of the first @racket[i] elements of @racket[s].
}
@defproc[(stream-append [s stream?] ...)