From ad669fc23a5df1be4689feb270d15eaac149c218 Mon Sep 17 00:00:00 2001 From: Satoshi Murakami Date: Wed, 4 May 2011 10:04:17 -0700 Subject: [PATCH] command: JSLint => JavaScript Lint --- src/command.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/command.coffee b/src/command.coffee index 1f6b36cb..8bfc589c 100644 --- a/src/command.coffee +++ b/src/command.coffee @@ -1,6 +1,6 @@ # The `coffee` utility. Handles command-line compilation of CoffeeScript # into various forms: saved into `.js` files or printed to stdout, piped to -# [JSLint](http://javascriptlint.com/) or recompiled every time the source is +# [JavaScript Lint](http://javascriptlint.com/) or recompiled every time the source is # saved, printed as a token stream or as the syntax tree, or launch an # interactive REPL. @@ -32,7 +32,7 @@ SWITCHES = [ ['-j', '--join [FILE]', 'concatenate the scripts before compiling'] ['-w', '--watch', 'watch scripts for changes, and recompile'] ['-p', '--print', 'print the compiled JavaScript to stdout'] - ['-l', '--lint', 'pipe the compiled JavaScript through JSLint'] + ['-l', '--lint', 'pipe the compiled JavaScript through JavaScript Lint'] ['-s', '--stdio', 'listen for and compile scripts over stdio'] ['-e', '--eval', 'compile a string from the command line'] ['-r', '--require [FILE*]', 'require a library before executing your script']