Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Usage formatting #2

Merged
merged 1 commit into from
Apr 2, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ To print the usage, use --help
```bash
$ node server.js --help

Usage: node server.js [ -h ] [ -p <port> ] [ -v ]
Usage: node server.js [ -h ] [ -p <port> ] [ -v ]
-h, --help Show this usage help
-p <port>, --port=<port> HTTP server listen port (default 3000)
-v, --verbose Verbose HTTP output
Expand Down
2 changes: 1 addition & 1 deletion common/usage.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = {
processArgs: function(filename) {
// helper function for printing usage info
function printUsageAndExit() {
console.log("\nUsage: node " + filename + " [ -h ] [ -p <port> ] [ -v ]");
console.log("\nUsage: node " + filename + " [ -h ] [ -p <port> ] [ -v ]");
console.log(" -h, --help Show this usage help");
console.log(" -p <port>, --port=<port> HTTP server listen port (default 3000)");
console.log(" -v, --verbose Verbose HTTP output");
Expand Down