From 6e64da6880a89e2e3b8375e3d3a55beff963283e Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Thu, 27 Apr 2017 08:16:22 -0700 Subject: [PATCH] Fix typos (#1651) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix typos `sourve` → `source` x4 --- pkgs/racket-doc/scribblings/reference/string-input.scrbl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/racket-doc/scribblings/reference/string-input.scrbl b/pkgs/racket-doc/scribblings/reference/string-input.scrbl index a07e4e44b3..209861bfb9 100644 --- a/pkgs/racket-doc/scribblings/reference/string-input.scrbl +++ b/pkgs/racket-doc/scribblings/reference/string-input.scrbl @@ -379,7 +379,7 @@ then the result of applying @racket[special-wrap] to the @tech{special} value is returned. A @racket[#f] value for @racket[special-wrap] is treated the same as the identity function. -@history[#:changed "6.8.0.2" @elem{Added the @racket[sourve-name] and +@history[#:changed "6.8.0.2" @elem{Added the @racket[source-name] and @racket[special-wrap] arguments.}]} @defproc[(read-byte-or-special [in input-port? (current-input-port)] @@ -390,7 +390,7 @@ then the result of applying @racket[special-wrap] to the Like @racket[read-char-or-special], but reads and returns a byte instead of a character. -@history[#:changed "6.8.0.2" @elem{Added the @racket[sourve-name] and +@history[#:changed "6.8.0.2" @elem{Added the @racket[source-name] and @racket[special-wrap] arguments.}]} @defproc[(peek-char [in input-port? (current-input-port)] @@ -417,7 +417,7 @@ character.} Like @racket[peek-char], but if the input port returns a non-byte value after @racket[skip-bytes-amt] byte positions, then it is returned. -@history[#:changed "6.8.0.2" @elem{Added the @racket[sourve-name] and +@history[#:changed "6.8.0.2" @elem{Added the @racket[source-name] and @racket[special-wrap] arguments.}]} @defproc[(peek-byte-or-special [in input-port? (current-input-port)] @@ -431,7 +431,7 @@ Like @racket[peek-char-or-special], but @tech{peeks} and returns a byte instead of a character, and it supports a @racket[progress] argument like @racket[peek-bytes-avail!]. -@history[#:changed "6.8.0.2" @elem{Added the @racket[sourve-name] and +@history[#:changed "6.8.0.2" @elem{Added the @racket[source-name] and @racket[special-wrap] arguments.}]}