ruby-changes:55148
From: nobu <ko1@a...>
Date: Thu, 28 Mar 2019 12:33:41 +0900 (JST)
Subject: [ruby-changes:55148] nobu:r67355 (trunk): [DOC] Fix method references to Method instance methods
nobu 2019-03-28 12:33:36 +0900 (Thu, 28 Mar 2019) New Revision: 67355 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=67355 Log: [DOC] Fix method references to Method instance methods Modified files: trunk/variable.c trunk/vm_method.c Index: vm_method.c =================================================================== --- vm_method.c (revision 67354) +++ vm_method.c (revision 67355) @@ -1031,7 +1031,7 @@ rb_remove_method(VALUE klass, const char https://github.com/ruby/ruby/blob/trunk/vm_method.c#L1031 * remove_method(string) -> self * * Removes the method identified by _symbol_ from the current - * class. For an example, see Module.undef_method. + * class. For an example, see Module#undef_method. * String arguments are converted to symbols. */ Index: variable.c =================================================================== --- variable.c (revision 67354) +++ variable.c (revision 67355) @@ -2738,7 +2738,7 @@ rb_const_list(void *data) https://github.com/ruby/ruby/blob/trunk/variable.c#L2738 * IO.constants.include?(:SYNC) #=> true * IO.constants(false).include?(:SYNC) #=> false * - * Also see Module::const_defined?. + * Also see Module#const_defined?. */ VALUE -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/