1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
This commit is contained in:
nobu 2004-04-26 14:56:58 +00:00
parent 04aa9a8f7d
commit aeae3aa4bb
3 changed files with 7 additions and 2 deletions

View file

@ -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

View file

@ -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.

View file

@ -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の定数として定義する