[前][次][番号順一覧][スレッド一覧]

ruby-changes:8369

From: matz <ko1@a...>
Date: Thu, 23 Oct 2008 17:31:10 +0900 (JST)
Subject: [ruby-changes:8369] Ruby:r19900 (trunk): * class.c (rb_class_instance_methods): rdoc fixed.

matz	2008-10-23 17:30:52 +0900 (Thu, 23 Oct 2008)

  New Revision: 19900

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=19900

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

  Modified files:
    trunk/ChangeLog
    trunk/class.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 19899)
+++ ChangeLog	(revision 19900)
@@ -1,3 +1,7 @@
+Thu Oct 23 17:30:29 2008  Yukihiro Matsumoto  <matz@r...>
+
+	* class.c (rb_class_instance_methods): rdoc fixed.  [ruby-core:19458]
+
 Thu Oct 23 16:19:33 2008  Yukihiro Matsumoto  <matz@r...>
 
 	* lib/irb/init.rb (IRB.load_modules): catch LoadError explicitly.
Index: class.c
===================================================================
--- class.c	(revision 19899)
+++ class.c	(revision 19900)
@@ -641,9 +641,9 @@
  *  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.

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]