From: Kim Joar Bekkelund Date: Thu, 2 May 2013 09:15:33 +0000 (+0200) Subject: Fix typo in bin and readme X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=790b3bcdc66061b63de0e2538a49c6f3edbdfc0e;p=UglifyJS.git Fix typo in bin and readme --- diff --git a/README.md b/README.md index 38653ef3..4640977f 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ The available options are: cascading statements into sequences. [string] --stats Display operations run time on STDERR. [boolean] --acorn Use Acorn for parsing. [boolean] - --spidermonkey Assume input fles are SpiderMonkey AST format (as JSON). + --spidermonkey Assume input files are SpiderMonkey AST format (as JSON). [boolean] --self Build itself (UglifyJS2) as a library (implies --wrap=UglifyJS --export-all) [boolean] diff --git a/bin/uglifyjs b/bin/uglifyjs index ee32fdf1..fab9c665 100755 --- a/bin/uglifyjs +++ b/bin/uglifyjs @@ -46,7 +46,7 @@ because of dead code removal or cascading statements into sequences.") .describe("stats", "Display operations run time on STDERR.") .describe("acorn", "Use Acorn for parsing.") - .describe("spidermonkey", "Assume input fles are SpiderMonkey AST format (as JSON).") + .describe("spidermonkey", "Assume input files are SpiderMonkey AST format (as JSON).") .describe("self", "Build itself (UglifyJS2) as a library (implies --wrap=UglifyJS --export-all)") .describe("wrap", "Embed everything in a big function, making the “exports” and “global” variables available. \ You need to pass an argument to this option to specify the name that your module will take when included in, say, a browser.")