From 8d72dc3a6bed99219670838796dfc398b4e28c5e Mon Sep 17 00:00:00 2001 From: marcandre Date: Wed, 14 Oct 2009 14:08:26 +0000 Subject: * vm_eval.c (eval_string): rdoc fix [ruby-core:26086] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25335 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_eval.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'vm_eval.c') diff --git a/vm_eval.c b/vm_eval.c index 8597bfb06..967e24c69 100644 --- a/vm_eval.c +++ b/vm_eval.c @@ -897,11 +897,10 @@ eval_string(VALUE self, VALUE src, VALUE scope, const char *file, int line) * eval(string [, binding [, filename [,lineno]]]) => obj * * Evaluates the Ruby expression(s) in string. If - * binding is given, the evaluation is performed in its - * context. The binding may be a Binding object or a - * Proc object. If the optional filename and - * lineno parameters are present, they will be used when - * reporting syntax errors. + * binding is given, which must be a Binding + * object, the evaluation is performed in its context. If the + * optional filename and lineno parameters are + * present, they will be used when reporting syntax errors. * * def getBinding(str) * return binding -- cgit