summaryrefslogtreecommitdiff
path: root/vm_eval.c
diff options
context:
space:
mode:
authorayumin <ayumin@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-12-30 08:07:27 +0000
committerayumin <ayumin@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-12-30 08:07:27 +0000
commit85bc3bdb08ef4380d3d4c78e773a02dadc011558 (patch)
treeb492014ae943ae8ff2e9fd2893a159b5e3781157 /vm_eval.c
parentb906a46edd76e873cec0714eb1e96d68caec363c (diff)
* 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
Diffstat (limited to 'vm_eval.c')
-rw-r--r--vm_eval.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm_eval.c b/vm_eval.c
index 74f3e162b0..7b37b1002f 100644
--- a/vm_eval.c
+++ b/vm_eval.c
@@ -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