From ac8fd2cd38a0d10d88129ee76751e018b4d62109 Mon Sep 17 00:00:00 2001 From: Eric Dobson Date: Mon, 27 May 2013 17:39:58 -0700 Subject: [PATCH] Fix doc typo. --- collects/scribblings/reference/sequences.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/scribblings/reference/sequences.scrbl b/collects/scribblings/reference/sequences.scrbl index 56976670a8..385e9df84b 100644 --- a/collects/scribblings/reference/sequences.scrbl +++ b/collects/scribblings/reference/sequences.scrbl @@ -736,7 +736,7 @@ each element in the sequence. A @deftech{stream} is a kind of @tech{sequence} that supports functional iteration via @racket[stream-first] and @racket[stream-rest]. The @racket[stream-cons] form constructs a lazy -stream, but plain lists can be used as stream, and functions such as +stream, but plain lists can be used as streams, and functions such as @racket[in-range] and @racket[in-naturals] also create streams. @note-lib[racket/stream]