aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-04-26 14:56:58 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-04-26 14:56:58 +0000
commitaeae3aa4bbe179d3ef71353e3bdab64b133866de (patch)
tree1eb1a47dab7f009d39f1af6d429c674e2da4229c
parent04aa9a8f7df6577b710015f7dc78ccbc97e1e836 (diff)
downloadruby-aeae3aa4bbe179d3ef71353e3bdab64b133866de.tar.gz
* README.EXT, README.EXT.ja: fixed wrong function signature.
[ruby-talk:98349] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6218 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--README.EXT2
-rw-r--r--README.EXT.ja2
3 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 81ae2d19f2..f18ac0c70f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Apr 26 23:56:54 2004 Daniel Kelley <news-1082945587@dkelley.gmp.san-jose.ca.us>
+
+ * README.EXT, README.EXT.ja: fixed wrong function signature.
+ [ruby-talk:98349]
+
Mon Apr 26 21:40:09 2004 Dave Thomas <dave@pragprog.com>
* lib/rdoc/code_objects.rb (RDoc::Context::add_alias): Only alias
diff --git a/README.EXT b/README.EXT
index 4504e98bdc..c65c177a27 100644
--- a/README.EXT
+++ b/README.EXT
@@ -807,7 +807,7 @@ namespace.
Defines a new Ruby module.
- VALUE rb_define_module_under(VALUE module, const char *name, VALUE super)
+ VALUE rb_define_module_under(VALUE module, const char *name)
Defines a new Ruby module under the module's namespace.
diff --git a/README.EXT.ja b/README.EXT.ja
index f49083e60e..c4d79f1c1e 100644
--- a/README.EXT.ja
+++ b/README.EXT.ja
@@ -934,7 +934,7 @@ VALUE rb_define_module(const char *name)
新しいRubyモジュールを定義する.
-VALUE rb_define_module_under(VALUE module, const char *name, VALUE super)
+VALUE rb_define_module_under(VALUE module, const char *name)
新しいRubyモジュールを定義し,moduleの定数として定義する.