Add class ref to `UnboundMethod#owner` doc

It refers to `Method#receiver` in the doc, but
there's no class reference in current doc.
Some tools automatically make it a link so it's useful.

Closes: https://github.com/ruby/ruby/pull/2156
This commit is contained in:
okuramasafumi 2019-04-27 11:18:25 +09:00 коммит произвёл Nobuyoshi Nakada
Родитель ecf660e438
Коммит 7fe04850d2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4BC7D6DF58D8DF60
1 изменённых файлов: 1 добавлений и 1 удалений

2
proc.c
Просмотреть файл

@ -1647,7 +1647,7 @@ method_original_name(VALUE obj)
* meth.owner -> class_or_module
*
* Returns the class or module that defines the method.
* See also receiver.
* See also Method#receiver.
*
* (1..3).method(:map).owner #=> Enumerable
*/