diff options
author | Mihai Bazon <mihai@bazon.net> | 2013-10-29 15:53:54 +0200 |
---|---|---|
committer | Mihai Bazon <mihai@bazon.net> | 2013-10-29 15:53:54 +0200 |
commit | b214d3786fdb569b9ba5b885f0653927960d450f (patch) | |
tree | 988fbcceebe9fa6fc54d60bb99819d388d2bb11f /lib | |
parent | 7cf79c302b61ebd07c33aabee929dfb8666cba56 (diff) | |
download | tracifyjs-b214d3786fdb569b9ba5b885f0653927960d450f.tar.gz tracifyjs-b214d3786fdb569b9ba5b885f0653927960d450f.zip |
Fix typo
Diffstat (limited to 'lib')
-rw-r--r-- | lib/scope.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/scope.js b/lib/scope.js index af6aebf5..49b04811 100644 --- a/lib/scope.js +++ b/lib/scope.js @@ -258,7 +258,7 @@ AST_Scope.DEFMETHOD("next_mangled", function(options){ AST_Function.DEFMETHOD("next_mangled", function(options, def){ // #179, #326 - // in Safary strict mode, something like (function x(x){...}) is a syntax error; + // in Safari strict mode, something like (function x(x){...}) is a syntax error; // a function expression's argument cannot shadow the function expression's name var tricky_def = def.orig[0] instanceof AST_SymbolFunarg && this.name && this.name.definition(); |