Skip to content
This repository has been archived by the owner on Apr 16, 2022. It is now read-only.

Commit

Permalink
Potentially fixed coding style for "index.ts"
Browse files Browse the repository at this point in the history
  • Loading branch information
RazzM13 committed Apr 20, 2018
1 parent 82b85d7 commit c541c0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ function list(val: string) {
}

function doNoCommand() {
console.error('\nno command given!');
console.error('\n', 'no command given!');
process.exit(1);
}

function doNoArgument() {
console.error('\nmissing required argument');
console.error('\n', 'missing required argument');
process.exit(1);
}

Expand Down

0 comments on commit c541c0d

Please sign in to comment.