aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-04 02:39:55 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-04 02:39:55 +0000
commitf259918c81b8cbf15755a0e2ee384079fd1b9c05 (patch)
treefe30d49bc9a7e000a39fdb663e1dfbfc7b7f2a86
parentc5d06834d2f4411362abd435fc660be988d74574 (diff)
downloadruby-f259918c81b8cbf15755a0e2ee384079fd1b9c05.tar.gz
* vm_method.c (rb_obj_respond_to): Remove a duplicated rdoc
comment and fix a markup error. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20480 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--vm_method.c11
2 files changed, 6 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index 9a2ef256c6..fe7a530175 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Dec 4 11:38:40 2008 Akinori MUSHA <knu@iDaemons.org>
+
+ * 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@ai.kyutech.ac.jp>
* ext/tk/lib/tk/menu.rb: TkOptionMenubutton.new fails to treat
diff --git a/vm_method.c b/vm_method.c
index 3f9d5025aa..72fc33f54e 100644
--- a/vm_method.c
+++ b/vm_method.c
@@ -1054,15 +1054,6 @@ rb_method_basic_definition_p(VALUE klass, ID id)
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 @@ rb_respond_to(VALUE obj, ID id)
* 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+.
*/