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

* vm_eval.c (rb_f_send): fix [Bug #5125] [ruby-core:38633]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34161 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ayumin 2011-12-30 08:07:27 +00:00
parent b906a46edd
commit 85bc3bdb08
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Fri Dec 30 17:01:12 2011 Ayumu AIZAWA <ayumu.aizawa@gmail.com>
* vm_eval.c (rb_f_send): fix iobj.send() documentation issue.
[Bug #5125] [ruby-core:38633]
Thu Dec 29 22:36:16 2011 CHIKANAGA Tomoyuki <nagachika00@gmail.com>
* lib/test/unit.rb (Test::Unit::Runner::Worker#_run_parallels): fix

View file

@ -728,8 +728,8 @@ send_internal(int argc, const VALUE *argv, VALUE recv, call_type scope)
/*
* call-seq:
* obj.send(symbol [, args...]) -> obj
* obj.__send__(symbol [, args...]) -> obj
* foo.send(symbol [, args...]) -> obj
* foo.__send__(symbol [, args...]) -> obj
*
* Invokes the method identified by _symbol_, passing it any
* arguments specified. You can use <code>__send__</code> if the name