[DOC] Separated Method#[] from Method#call [Bug #16813] [ci skip]

This commit is contained in:
Nobuyoshi Nakada 2020-04-24 11:10:44 +09:00
Родитель ac2106acc2
Коммит cf90df22c7
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7CD2805BFA3770C6
1 изменённых файлов: 13 добавлений и 1 удалений

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

@ -2271,10 +2271,22 @@ method_clone(VALUE self)
*/
/* Document-method: Method#[]
*
* call-seq:
* meth[args, ...] -> obj
*
* Invokes the <i>meth</i> with the specified arguments, returning the
* method's return value, like #call.
*
* m = 12.method("+")
* m[3] #=> 15
* m[20] #=> 32
*/
/*
* call-seq:
* meth.call(args, ...) -> obj
* meth[args, ...] -> obj
*
* Invokes the <i>meth</i> with the specified arguments, returning the
* method's return value.