From 6f4bd40a760db2a764147b410957fa084f75dc96 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 28 Sep 2005 22:22:44 +0000 Subject: * evalc. (rb_f_send): underscores need to be escaped. fixed by Doug Kearns. [ruby-core:06053] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9335 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- eval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'eval.c') diff --git a/eval.c b/eval.c index 06a1fa1e5..4b5e0eb69 100644 --- a/eval.c +++ b/eval.c @@ -5846,7 +5846,7 @@ send_fcall(int argc, VALUE *argv, VALUE recv, int scope) * obj.__send__(symbol [, args...]) => obj * * Invokes the method identified by _symbol_, passing it any - * arguments specified. You can use __send__ if the name + * arguments specified. You can use \_\_send__ if the name * +send+ clashes with an existing method in _obj_. Raises an * NoMethodError exception for private methods except when it is * called in function call style. -- cgit