Improving readability.

git-svn-id: svn://10.0.0.236/trunk@135262 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
pschwartau%netscape.com
2002-12-13 21:40:32 +00:00
parent 1467cc0fdc
commit eadfe426e2

View File

@@ -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);