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

* class.c (rb_class_instance_methods): rdoc fixed. [ruby-core:19458]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19900 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2008-10-23 08:30:52 +00:00
parent 04e30e3103
commit 06151d4a99
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
Thu Oct 23 17:30:29 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* class.c (rb_class_instance_methods): rdoc fixed. [ruby-core:19458]
Thu Oct 23 16:19:33 2008 Yukihiro Matsumoto <matz@ruby-lang.org> Thu Oct 23 16:19:33 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* lib/irb/init.rb (IRB.load_modules): catch LoadError explicitly. * lib/irb/init.rb (IRB.load_modules): catch LoadError explicitly.

View file

@ -641,9 +641,9 @@ class_instance_method_list(int argc, VALUE *argv, VALUE mod, int (*func) (ID, lo
* call-seq: * call-seq:
* mod.instance_methods(include_super=true) => array * mod.instance_methods(include_super=true) => array
* *
* Returns an array containing the names of public instance methods in * Returns an array containing the names of instance methods that is callable
* the receiver. For a module, these are the public methods; for a * from outside in the receiver. For a module, these are the public methods;
* class, they are the instance (not singleton) methods. With no * for a class, they are the instance (not singleton) methods. With no
* argument, or with an argument that is <code>false</code>, the * argument, or with an argument that is <code>false</code>, the
* instance methods in <i>mod</i> are returned, otherwise the methods * instance methods in <i>mod</i> are returned, otherwise the methods
* in <i>mod</i> and <i>mod</i>'s superclasses are returned. * in <i>mod</i> and <i>mod</i>'s superclasses are returned.