summaryrefslogtreecommitdiff
path: root/ext/zlib
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-11-13 12:19:08 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-11-13 12:19:08 +0000
commitf22a307d7e137e8fd43e202a7ad731b8505e5f2a (patch)
tree26a271303a9ac7a0169c1d68a2890623d15611d8 /ext/zlib
parent9ba317f1575bba7d21b4644fa0bee85e2a57c4f4 (diff)
* ext/zlib/zlib.c (rb_zlib_adler32): fix typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25751 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/zlib')
-rw-r--r--ext/zlib/zlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c
index 0471b1f006..a865cf384f 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+.
*