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

* class.c: rdoc patch

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6636 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ocean 2004-07-15 11:46:00 +00:00
parent 3ac79892be
commit 5d67732de3
2 changed files with 9 additions and 5 deletions

View file

@ -1,3 +1,7 @@
Thu Jul 15 20:44:46 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
* class.c: rdoc patch
Thu Jul 15 14:12:34 2004 why the lucky stiff <why@topi.cc>
* lib/yaml.rb (YAML::load_file, YAML::parse_file): added.

10
class.c
View file

@ -632,7 +632,7 @@ class_instance_method_list(argc, argv, mod, func)
/*
* call-seq:
* mod.instance_methods(include_super=false) => array
* mod.instance_methods(include_super=true) => array
*
* Returns an array containing the names of public instance methods in
* the receiver. For a module, these are the public methods; for a
@ -668,7 +668,7 @@ rb_class_instance_methods(argc, argv, mod)
/*
* call-seq:
* mod.protected_instance_methods(include_super=false) => array
* mod.protected_instance_methods(include_super=true) => array
*
* Returns a list of the protected instance methods defined in
* <i>mod</i>. If the optional parameter is not <code>false</code>, the
@ -686,7 +686,7 @@ rb_class_protected_instance_methods(argc, argv, mod)
/*
* call-seq:
* mod.private_instance_methods(include_super=false) => array
* mod.private_instance_methods(include_super=true) => array
*
* Returns a list of the private instance methods defined in
* <i>mod</i>. If the optional parameter is not <code>false</code>, the
@ -712,7 +712,7 @@ rb_class_private_instance_methods(argc, argv, mod)
/*
* call-seq:
* mod.public_instance_methods(include_super=false) => array
* mod.public_instance_methods(include_super=true) => array
*
* Returns a list of the public instance methods defined in <i>mod</i>.
* If the optional parameter is not <code>false</code>, the methods of
@ -730,7 +730,7 @@ rb_class_public_instance_methods(argc, argv, mod)
/*
* call-seq:
* obj.singleton_methods(all=false) => array
* obj.singleton_methods(all=true) => array
*
* Returns an array of the names of singleton methods for <i>obj</i>.
* If the optional <i>all</i> parameter is true, the list will include