From 3b45a5b305c0951c410f871b0d2d06c0f6986533 Mon Sep 17 00:00:00 2001 From: John Bampton Date: Sat, 12 Oct 2024 22:48:10 +1000 Subject: [PATCH] [DOC] Fix spelling ruby/ruby@afacb8ada5788299468cce6247601412e12002a4 --- ext/zlib/zlib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c index 50d8dd4..0899861 100644 --- a/ext/zlib/zlib.c +++ b/ext/zlib/zlib.c @@ -1521,7 +1521,7 @@ rb_zstream_total_out(VALUE obj) } /* - * Guesses the type of the data which have been inputed into the stream. The + * Guesses the type of the data which have been inputted into the stream. The * returned value is either BINARY, ASCII, or * UNKNOWN. */ @@ -4054,7 +4054,7 @@ rb_gzreader_read(int argc, VALUE *argv, VALUE obj) * call-seq: * gzipreader.readpartial(maxlen [, outbuf]) => string, outbuf * - * Reads at most maxlen bytes from the gziped stream but + * Reads at most maxlen bytes from the gzipped stream but * it blocks only if gzipreader has no data immediately available. * If the optional outbuf argument is present, * it must reference a String, which will receive the data.