summaryrefslogtreecommitdiffstats
path: root/class.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-23 08:30:52 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-23 08:30:52 +0000
commit0a3d859b57449c5f5510ae2eb5f6401d6c86ec7d (patch)
treef514f55e31b1dcfd67ac0693d6373030fde7c5d1 /class.c
parent8dc2fc44b3b4fe00faf2e14f62f9e8ae64946dd1 (diff)
downloadruby-0a3d859b57449c5f5510ae2eb5f6401d6c86ec7d.tar.gz
ruby-0a3d859b57449c5f5510ae2eb5f6401d6c86ec7d.tar.xz
ruby-0a3d859b57449c5f5510ae2eb5f6401d6c86ec7d.zip
* class.c (rb_class_instance_methods): rdoc fixed. [ruby-core:19458]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19900 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'class.c')
-rw-r--r--class.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/class.c b/class.c
index 9ec27611e..066fc0744 100644
--- a/class.c
+++ b/class.c
@@ -641,9 +641,9 @@ class_instance_method_list(int argc, VALUE *argv, VALUE mod, int (*func) (ID, lo
* call-seq:
* 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
- * class, they are the instance (not singleton) methods. With no
+ * Returns an array containing the names of instance methods that is callable
+ * from outside in the receiver. For a module, these are the public methods;
+ * for a class, they are the instance (not singleton) methods. With no
* argument, or with an argument that is <code>false</code>, the
* instance methods in <i>mod</i> are returned, otherwise the methods
* in <i>mod</i> and <i>mod</i>'s superclasses are returned.