From c1fe5e5719841a512275eb34cadfff38d2f28efa Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Thu, 21 May 2020 09:07:00 -0700 Subject: [PATCH] doc typo: "bytes string" to "byte string" (2 more) --- 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 ec11ffa762..597c9d2c31 100644 --- a/pkgs/racket-doc/scribblings/reference/bytes.scrbl +++ b/pkgs/racket-doc/scribblings/reference/bytes.scrbl @@ -126,12 +126,12 @@ positions are initialized with the given @racket[b]s. Changes the bytes of @racket[dest] starting at position @racket[dest-start] to match the bytes in @racket[src] from @racket[src-start] (inclusive) to @racket[src-end] (exclusive). The - bytes strings @racket[dest] and @racket[src] can be the same byte + byte strings @racket[dest] and @racket[src] can be the same byte string, and in that case the destination region can overlap with the source region; the destination bytes after the copy match the source bytes from before the copy. If any of @racket[dest-start], @racket[src-start], or @racket[src-end] are out of range (taking into - account the sizes of the bytes strings and the source and destination + account the sizes of the byte strings and the source and destination regions), the @exnraise[exn:fail:contract]. @mz-examples[(define s (bytes 65 112 112 108 101))