mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
This commit is contained in:
parent
499a59d543
commit
b97494f3cb
1 changed files with 4 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue