From 50098f4b61179a32f9df92e5d0e58cb911f71c86 Mon Sep 17 00:00:00 2001 From: Mau Magnaguagno Date: Tue, 22 Feb 2022 05:49:09 -0300 Subject: [PATCH] [ruby/zlib] [DOC] Fix typo in Zlib.adler32_combine https://github.com/ruby/zlib/commit/5e8f0b4164 --- ext/zlib/zlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c index be5f148bcd..5cd45c9b26 100644 --- a/ext/zlib/zlib.c +++ b/ext/zlib/zlib.c @@ -461,7 +461,7 @@ rb_zlib_adler32(int argc, VALUE *argv, VALUE klass) * * call-seq: Zlib.adler32_combine(adler1, adler2, len2) * - * Combine two Adler-32 check values in to one. +alder1+ is the first Adler-32 + * Combine two Adler-32 check values in to one. +adler1+ is the first Adler-32 * value, +adler2+ is the second Adler-32 value. +len2+ is the length of the * string used to generate +adler2+. *