1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/zlib] [DOC] Fix typo in Zlib.adler32_combine

https://github.com/ruby/zlib/commit/5e8f0b4164
This commit is contained in:
Mau Magnaguagno 2022-02-22 05:49:09 -03:00 committed by git
parent ae8a8b184e
commit 50098f4b61

View file

@ -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+.
*