diff options
| author | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-11-13 12:19:08 +0000 |
|---|---|---|
| committer | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-11-13 12:19:08 +0000 |
| commit | 4e6d3485a56f197a1c5893daa193a955a291b3b9 (patch) | |
| tree | 26a271303a9ac7a0169c1d68a2890623d15611d8 | |
| parent | 878ceee565344e0709ee4f033e83240d646ee6d9 (diff) | |
| download | ruby-4e6d3485a56f197a1c5893daa193a955a291b3b9.tar.gz ruby-4e6d3485a56f197a1c5893daa193a955a291b3b9.tar.xz ruby-4e6d3485a56f197a1c5893daa193a955a291b3b9.zip | |
* ext/zlib/zlib.c (rb_zlib_adler32): fix typo.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25751 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | ext/zlib/zlib.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Fri Nov 13 21:18:15 2009 Yusuke Endoh <mame@tsg.ne.jp> + + * ext/zlib/zlib.c (rb_zlib_adler32): fix typo. + Fri Nov 13 16:22:00 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> * thread.c (thread_start_func_2): see first_func, not first_proc, diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c index 0471b1f00..a865cf384 100644 --- a/ext/zlib/zlib.c +++ b/ext/zlib/zlib.c @@ -306,7 +306,7 @@ do_checksum(argc, argv, func) /* * call-seq: Zlib.adler32(string, adler) * - * Calculates Alder-32 checksum for +string+, and returns updated value of + * Calculates Adler-32 checksum for +string+, and returns updated value of * +adler+. If +string+ is omitted, it returns the Adler-32 initial value. If * +adler+ is omitted, it assumes that the initial value is given to +adler+. * |
