Fix typo
authorMihai Bazon <mihai@bazon.net>
Tue, 29 Oct 2013 13:53:54 +0000 (15:53 +0200)
committerMihai Bazon <mihai@bazon.net>
Tue, 29 Oct 2013 13:53:54 +0000 (15:53 +0200)
lib/scope.js

index af6aebf..49b0481 100644 (file)
@@ -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();