This commit is contained in:
pschwartau%netscape.com 2002-12-13 21:40:32 +00:00
Родитель 6fc801b267
Коммит 974ade6725
1 изменённых файлов: 2 добавлений и 2 удалений

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

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