summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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の定数として定義する.