Skip to content

Commit

Permalink
doc: change to iojs from node in the usage message
Browse files Browse the repository at this point in the history
PR-URL: #468
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
  • Loading branch information
jongyeol authored and bnoordhuis committed Jan 16, 2015
1 parent 3fde649 commit daf9562
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/_debugger.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ exports.start = function(argv, stdin, stdout) {
argv || (argv = process.argv.slice(2));

if (argv.length < 1) {
console.error('Usage: node debug script.js');
console.error('Usage: iojs debug script.js');
process.exit(1);
}

Expand Down
4 changes: 2 additions & 2 deletions src/node.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2870,8 +2870,8 @@ static bool ParseDebugOpt(const char* arg) {
}

static void PrintHelp() {
printf("Usage: node [options] [ -e script | script.js ] [arguments] \n"
" node debug script.js [arguments] \n"
printf("Usage: iojs [options] [ -e script | script.js ] [arguments] \n"
" iojs debug script.js [arguments] \n"
"\n"
"Options:\n"
" -v, --version print node's version\n"
Expand Down

0 comments on commit daf9562

Please sign in to comment.