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

* proc.c: [DOC] fix Object#define_singleton_method and

main.define_method return value. [ci skip]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56062 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
sho-h 2016-09-03 15:21:43 +00:00
parent e63546fb45
commit ba32b53e48
2 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,8 @@
Sun Sep 4 00:17:55 2016 Sho Hashimoto <sho-h@ruby-lang.org>
* proc.c: [DOC] fix Object#define_singleton_method and
main.define_method return value. [ci skip]
Sat Sep 3 11:28:29 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
* thread_pthread.c (ruby_init_stack): check stack bounds even if

8
proc.c
View file

@ -1932,8 +1932,8 @@ rb_mod_define_method(int argc, VALUE *argv, VALUE mod)
/*
* call-seq:
* define_singleton_method(symbol, method) -> new_method
* define_singleton_method(symbol) { block } -> proc
* define_singleton_method(symbol, method) -> symbol
* define_singleton_method(symbol) { block } -> symbol
*
* Defines a singleton method in the receiver. The _method_
* parameter can be a +Proc+, a +Method+ or an +UnboundMethod+ object.
@ -1965,8 +1965,8 @@ rb_obj_define_method(int argc, VALUE *argv, VALUE obj)
}
/*
* define_method(symbol, method) -> new_method
* define_method(symbol) { block } -> proc
* define_method(symbol, method) -> symbol
* define_method(symbol) { block } -> symbol
*
* Defines a global function by _method_ or the block.
*/