summaryrefslogtreecommitdiff
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
parent0b57f67531a1dc722524a5316657ffb9c783b108 (diff)
* 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
-rw-r--r--README.EXT2
-rw-r--r--README.EXT.ja2
2 files changed, 2 insertions, 2 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 */
diff --git a/README.EXT.ja b/README.EXT.ja
index 252f2bb92a..d18b81b58e 100644
--- a/README.EXT.ja
+++ b/README.EXT.ja
@@ -726,7 +726,7 @@ Rubyは拡張ライブラリをロードする時に「Init_ライブラリ名
{
/* DBMクラスを定義する */
cDBM = rb_define_class("DBM", rb_cObject);
- /* DBMはEnumerateモジュールをインクルードする */
+ /* DBMはEnumerableモジュールをインクルードする */
rb_include_module(cDBM, rb_mEnumerable);
/* DBMクラスのクラスメソッドopen(): 引数はCの配列で受ける */