diff options
author | Mihai Bazon <mihai.bazon@gmail.com> | 2013-05-08 05:51:52 -0700 |
---|---|---|
committer | Mihai Bazon <mihai.bazon@gmail.com> | 2013-05-08 05:51:52 -0700 |
commit | 645d5bdbc53d2293ed329a4c55b2af2cdeb5ace2 (patch) | |
tree | 61255071dc44de2d0edee956d36a2836fd31d508 | |
parent | 9af2bbffde2653237b36a06b005209be9f6cc1e6 (diff) | |
parent | 790b3bcdc66061b63de0e2538a49c6f3edbdfc0e (diff) | |
download | tracifyjs-645d5bdbc53d2293ed329a4c55b2af2cdeb5ace2.tar.gz tracifyjs-645d5bdbc53d2293ed329a4c55b2af2cdeb5ace2.zip |
Merge pull request #195 from kjbekkelund/typo
Fix typo in bin and readme
-rw-r--r-- | README.md | 2 | ||||
-rwxr-xr-x | bin/uglifyjs | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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.") |