Add Method#original_name code example [ci skip]

* proc.c (method_original_name): [DOC] add code example.
  [Fix GH-1693]

Author:    Seiei Miyagi <hanachin@gmail.com>

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59720 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2017-09-02 01:41:14 +00:00
parent 0118b98545
commit caf92db486

6
proc.c
View File

@ -1606,6 +1606,12 @@ method_name(VALUE obj)
* meth.original_name -> symbol * meth.original_name -> symbol
* *
* Returns the original name of the method. * Returns the original name of the method.
*
* class C
* def foo; end
* alias bar foo
* end
* C.method(:bar).original_name # => :foo
*/ */
static VALUE static VALUE