summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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の配列で受ける */