aboutsummaryrefslogtreecommitdiffstats
path: root/README.EXT
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-04-01 08:58:59 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-04-01 08:58:59 +0000
commit4192341ef1dd3776321b31f6a6831fdb3ae8d599 (patch)
tree094a9b9b28932feef4ff47bc758ffde0b58dfebe /README.EXT
parent0b57f67531a1dc722524a5316657ffb9c783b108 (diff)
downloadruby-4192341ef1dd3776321b31f6a6831fdb3ae8d599.tar.gz
* README.EXT: fix typo.
[ruby-core:61634] [Bug #9662] * README.EXT.ja: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45495 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 c1a9913d25..b36273723d 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 */