From 674046f39d80ffa566da3a10d4ee9321b35a96c2 Mon Sep 17 00:00:00 2001 From: Vincent St-Amour Date: Thu, 17 Jun 2010 11:31:44 -0400 Subject: [PATCH] Fixed a mistake in the byte-string reference. --- collects/scribblings/reference/bytes.scrbl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/collects/scribblings/reference/bytes.scrbl b/collects/scribblings/reference/bytes.scrbl index 4357c718e2..3bd8f43857 100644 --- a/collects/scribblings/reference/bytes.scrbl +++ b/collects/scribblings/reference/bytes.scrbl @@ -134,9 +134,9 @@ positions are initialized with the given @scheme[b]s. (bytes-copy! s 0 s 3 4) s]} -@defproc[(bytes-fill! [dest (and/c bytes? (not/c immutable?))] [char - char?]) void?]{ Changes @scheme[dest] so that every position in the - bytes is filled with @scheme[char]. +@defproc[(bytes-fill! [dest (and/c bytes? (not/c immutable?))] [b + byte?]) void?]{ Changes @scheme[dest] so that every position in the + bytes is filled with @scheme[b]. @mz-examples[(define s (bytes 65 112 112 108 101)) (bytes-fill! s 113)