1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[DOC] Fix method references to Method instance methods

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67355 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2019-03-28 03:33:36 +00:00
parent de0ef1a9df
commit 978290515e
2 changed files with 2 additions and 2 deletions

View file

@ -2738,7 +2738,7 @@ rb_const_list(void *data)
* IO.constants.include?(:SYNC) #=> true
* IO.constants(false).include?(:SYNC) #=> false
*
* Also see Module::const_defined?.
* Also see Module#const_defined?.
*/
VALUE

View file

@ -1031,7 +1031,7 @@ rb_remove_method(VALUE klass, const char *name)
* 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.
*/