diff --git a/mozilla/js/tests/js1_5/Scope/regress-181834.js b/mozilla/js/tests/js1_5/Scope/regress-181834.js index 625c7c379b7..50e9d5e55fe 100644 --- a/mozilla/js/tests/js1_5/Scope/regress-181834.js +++ b/mozilla/js/tests/js1_5/Scope/regress-181834.js @@ -88,7 +88,7 @@ function outer(N) setDynamicScope(true); /* - * Recompile the function outer() via eval() in order to + * Recompile the function |outer| via eval() in order to * feel the effect of the dynamic scope mode we have set. */ var s = outer.toString(); @@ -116,7 +116,7 @@ addThis(); setDynamicScope(false); /* - * Recompile the function outer() via eval() in order to + * Recompile the function |outer| via eval() in order to * feel the effect of the dynamic scope mode we have set. */ eval(s);