Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
Lowercasing descriptions.
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Beddows committed Aug 1, 2016
1 parent edc16b8 commit 1196a9a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ if (typeof gc !== "undefined") {

program
.version(packageJson.version)
.option("-c, --config <path>", "Config file path")
.option("-p, --port <port>", "Listening port number")
.option("-a, --address <ip>", "Listening host name or ip")
.option("-b, --blockchain <path>", "Blockchain db path")
.option("-x, --peers [peers...]", "Peers list")
.option("-l, --log <level>", "Log level")
.option("-c, --config <path>", "config file path")
.option("-p, --port <port>", "listening port number")
.option("-a, --address <ip>", "listening host name or ip")
.option("-b, --blockchain <path>", "blockchain db path")
.option("-x, --peers [peers...]", "peers list")
.option("-l, --log <level>", "log level")
.parse(process.argv);

if (program.config) {
Expand Down

0 comments on commit 1196a9a

Please sign in to comment.