From 7908be8ce916a5b3f800b567ccb0325ac7933ab5 Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Thu, 11 May 2017 10:08:27 -0400 Subject: [PATCH] Fix spelling errors (#1687) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit “cooresponds” → “corresponds” x2 --- pkgs/racket-doc/scribblings/reference/bytes.scrbl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/racket-doc/scribblings/reference/bytes.scrbl b/pkgs/racket-doc/scribblings/reference/bytes.scrbl index f9828d647c..f6535464a1 100644 --- a/pkgs/racket-doc/scribblings/reference/bytes.scrbl +++ b/pkgs/racket-doc/scribblings/reference/bytes.scrbl @@ -78,7 +78,7 @@ positions are initialized with the given @racket[b]s. @defproc[(bytes-ref [bstr bytes?] [k exact-nonnegative-integer?]) byte?]{ Returns the character at position @racket[k] in @racket[bstr]. - The first position in the bytes cooresponds to @racket[0], so the + The first position in the bytes corresponds to @racket[0], so the position @racket[k] must be less than the length of the bytes, otherwise the @exnraise[exn:fail:contract]. @@ -88,7 +88,7 @@ positions are initialized with the given @racket[b]s. @defproc[(bytes-set! [bstr (and/c bytes? (not/c immutable?))] [k exact-nonnegative-integer?] [b byte?]) void?]{ Changes the character position @racket[k] in @racket[bstr] to @racket[b]. The first - position in the byte string cooresponds to @racket[0], so the position + position in the byte string corresponds to @racket[0], so the position @racket[k] must be less than the length of the bytes, otherwise the @exnraise[exn:fail:contract].