summaryrefslogtreecommitdiff
path: root/README.EXT
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-07-02 16:55:39 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-07-02 16:55:39 +0000
commit2d90c01a1e8e5076d29e292fa6ed607044389f4d (patch)
tree6bcabef77022286be4442cf7cde329fd89e69c69 /README.EXT
parent5ab69337816b10557e5a1658a5fa980c790a4b48 (diff)
merge revision(s) r45495: [Backport #9662]
* README.EXT: fix typo. [ruby-core:61634] [Bug #9662] * README.EXT.ja: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_1@46662 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'README.EXT')
-rw-r--r--README.EXT2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.EXT b/README.EXT
index b1a816c271..6f7340ceda 100644
--- a/README.EXT
+++ b/README.EXT
@@ -650,7 +650,7 @@ Here's the example of an initializing function.
{
/* define DBM class */
cDBM = rb_define_class("DBM", rb_cObject);
- /* DBM includes Enumerate module */
+ /* DBM includes Enumerable module */
rb_include_module(cDBM, rb_mEnumerable);
/* DBM has class method open(): arguments are received as C array */