vm_eval.c: fix `rb_eval_string_wrap` rdoc

* vm_eval.c (rb_eval_string_wrap): [DOC] Fix `rb_eval_string_wrap`
  documentation.  It is referencing `require` instead of `load`.
  The former does not have the optional argument.  [Fix GH-779]
  [ci skip]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48745 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2014-12-09 03:48:35 +00:00
Родитель 428791543b
Коммит 3992aaa36c
2 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,9 @@
Tue Dec 9 12:48:32 2014 Josef Simanek <josef.simanek@gmail.com>
* vm_eval.c (rb_eval_string_wrap): [DOC] Fix `rb_eval_string_wrap`
documentation. It is referencing `require` instead of `load`.
The former does not have the optional argument. [Fix GH-779]
Tue Dec 9 10:16:24 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
* eval.c (rb_frame_last_func): return the most recent frame method

Просмотреть файл

@ -1442,7 +1442,7 @@ rb_eval_string_protect(const char *str, int *state)
/**
* Evaluates the given string under a module binding in an isolated binding.
* This is same as the binding for required libraries on "require('foo', true)".
* This is same as the binding for loaded libraries on "load('foo', true)".
*
* __FILE__ will be "(eval)", and __LINE__ starts from 1 in the evaluation.
*