summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-07-07 03:44:42 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-07-07 03:44:42 +0000
commitea5adc4c3901bfa801bad71134f282f0151cfb33 (patch)
tree19347e1088eff86c63f2a383db82245842700a7c
parentae8a4a434498d0a65ec1e9428714123203e981c6 (diff)
merge revision(s) 45495: [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_0_0@46739 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--README.EXT2
-rw-r--r--README.EXT.ja2
-rw-r--r--version.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/README.EXT b/README.EXT
index 6a622d2b11..61bc6ef731 100644
--- a/README.EXT
+++ b/README.EXT
@@ -639,7 +639,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 cc7eaf749a..993a21ac79 100644
--- a/README.EXT.ja
+++ b/README.EXT.ja
@@ -715,7 +715,7 @@ Rubyは拡張ライブラリをロードする時に「Init_ライブラリ名
{
/* DBMクラスを定義する */
cDBM = rb_define_class("DBM", rb_cObject);
- /* DBMはEnumerateモジュールをインクルードする */
+ /* DBMはEnumerableモジュールをインクルードする */
rb_include_module(cDBM, rb_mEnumerable);
/* DBMクラスのクラスメソッドopen(): 引数はCの配列で受ける */
diff --git a/version.h b/version.h
index d2b0cbce6e..c9c52ae4f3 100644
--- a/version.h
+++ b/version.h
@@ -1,6 +1,6 @@
#define RUBY_VERSION "2.0.0"
#define RUBY_RELEASE_DATE "2014-07-07"
-#define RUBY_PATCHLEVEL 522
+#define RUBY_PATCHLEVEL 523
#define RUBY_RELEASE_YEAR 2014
#define RUBY_RELEASE_MONTH 7