proc.c: [DOC] improve docs for {Method,Proc}#===

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65379 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
stomar 2018-10-26 12:23:25 +00:00
Родитель 96353b97a5
Коммит f889eba1d4
1 изменённых файлов: 7 добавлений и 7 удалений

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

@ -805,9 +805,9 @@ rb_block_lambda(void)
* call-seq:
* proc === obj -> result_of_proc
*
* Invokes the block with +obj+ as the proc's parameter like Proc#call. It
* is to allow a proc object to be a target of +when+ clause in a case
* statement.
* Invokes the block with +obj+ as the proc's parameter like Proc#call.
* This allows a proc object to be the target of a +when+ clause
* in a case statement.
*/
/* CHECKME: are the argument checking semantics correct? */
@ -2087,15 +2087,15 @@ method_clone(VALUE self)
* call-seq:
* method === obj -> result_of_method
*
* Invokes the method with +obj+ as the parameter like #call. It
* is to allow a method object to be a target of +when+ clause in a case
* statement.
* Invokes the method with +obj+ as the parameter like #call.
* This allows a method object to be the target of a +when+ clause
* in a case statement.
*
* require 'prime'
*
* case 1373
* when Prime.method(:prime?)
* # ....
* # ...
* end
*/