summaryrefslogtreecommitdiff
path: root/vm_eval.c
diff options
context:
space:
mode:
authormarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-14 14:08:26 +0000
committermarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-14 14:08:26 +0000
commitb97494f3cb8032433039adff3d9bc45bc83256c3 (patch)
tree7f885bc5bba0460403e73c37eea4ae04de013fe8 /vm_eval.c
parent499a59d543ba5e0c50a544fbc499db06d0400931 (diff)
* vm_eval.c (eval_string): rdoc fix [ruby-core:26086]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25335 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_eval.c')
-rw-r--r--vm_eval.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/vm_eval.c b/vm_eval.c
index 8597bfb060..967e24c694 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 <em>string</em>. If
- * <em>binding</em> is given, the evaluation is performed in its
- * context. The binding may be a <code>Binding</code> object or a
- * <code>Proc</code> object. If the optional <em>filename</em> and
- * <em>lineno</em> parameters are present, they will be used when
- * reporting syntax errors.
+ * <em>binding</em> is given, which must be a <code>Binding</code>
+ * object, the evaluation is performed in its context. If the
+ * optional <em>filename</em> and <em>lineno</em> parameters are
+ * present, they will be used when reporting syntax errors.
*
* def getBinding(str)
* return binding