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

ruby-changes:8944

From: knu <ko1@a...>
Date: Thu, 4 Dec 2008 11:40:24 +0900 (JST)
Subject: [ruby-changes:8944] Ruby:r20480 (trunk): * vm_method.c (rb_obj_respond_to): Remove a duplicated rdoc

knu	2008-12-04 11:39:55 +0900 (Thu, 04 Dec 2008)

  New Revision: 20480

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

  Log:
    * vm_method.c (rb_obj_respond_to): Remove a duplicated rdoc
      comment and fix a markup error.

  Modified files:
    trunk/ChangeLog
    trunk/vm_method.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 20479)
+++ ChangeLog	(revision 20480)
@@ -1,3 +1,8 @@
+Thu Dec  4 11:38:40 2008  Akinori MUSHA  <knu@i...>
+
+	* vm_method.c (rb_obj_respond_to): Remove a duplicated rdoc
+	  comment and fix a markup error.
+
 Thu Dec  4 06:04:16 2008  Hidetoshi NAGAI  <nagai@a...>
 
 	* ext/tk/lib/tk/menu.rb: TkOptionMenubutton.new fails to treat 
Index: vm_method.c
===================================================================
--- vm_method.c	(revision 20479)
+++ vm_method.c	(revision 20480)
@@ -1054,15 +1054,6 @@
     return 0;
 }
 
-/*
- *  call-seq:
- *     obj.respond_to?(symbol, include_private=false) => true or false
- *
- *  Returns +true+> if _obj_ responds to the given
- *  method. Private methods are included in the search only if the
- *  optional second parameter evaluates to +true+.
- */
-
 int
 rb_obj_respond_to(VALUE obj, ID id, int priv)
 {
@@ -1091,7 +1082,7 @@
  *  call-seq:
  *     obj.respond_to?(symbol, include_private=false) => true or false
  *
- *  Returns +true+> if _obj_ responds to the given
+ *  Returns +true+ if _obj_ responds to the given
  *  method. Private methods are included in the search only if the
  *  optional second parameter evaluates to +true+.
  */

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

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