aboutsummaryrefslogtreecommitdiffstats
path: root/vm_eval.c
diff options
context:
space:
mode:
Diffstat (limited to 'vm_eval.c')
-rw-r--r--vm_eval.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/vm_eval.c b/vm_eval.c
index 398c344bc5..f9eef4288a 100644
--- a/vm_eval.c
+++ b/vm_eval.c
@@ -1379,10 +1379,11 @@ rb_obj_instance_exec(int argc, VALUE *argv, VALUE self)
* mod.class_eval(string [, filename [, lineno]]) -> obj
* mod.module_eval {|| block } -> obj
*
- * Evaluates the string or block in the context of _mod_. This can
- * be used to add methods to a class. <code>module_eval</code> returns
- * the result of evaluating its argument. The optional _filename_
- * and _lineno_ parameters set the text for error messages.
+ * Evaluates the string or block in the context of _mod_, except that when
+ * a block is given, constant lookup is not affected. This can be used to
+ * add methods to a class. <code>module_eval</code> returns the result of
+ * evaluating its argument. The optional _filename_ and _lineno_ parameters
+ * set the text for error messages.
*
* class Thing
* end