Skip to content

Commit 5a6c731

Browse files
author
Juhyung Park
committed
Change option and command order in the help message
1 parent 0710980 commit 5a6c731

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ A command line CodeChain key management tool
2323

2424
Examples:
2525

26-
cckey -t platform create --passphrase "my password"
26+
cckey create -t platform --passphrase "my password"
2727

28-
cckey -t asset getKeys
28+
cckey getKeys -t asset
2929

30-
cckey -t platform delete --address "tcc..."
30+
cckey delete -t platform --address "tcc..."
3131

3232
```

src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ commander.on("--help", () => {
2929

3030
console.log(` Examples:
3131
32-
cckey -t platform create --passphrase "my password"
32+
cckey create -t platform --passphrase "my password"
3333
34-
cckey -t asset getKeys
34+
cckey getKeys -t asset
3535
36-
cckey -t platform delete --address "tcc..."
36+
cckey delete -t platform --address "tcc..."
3737
3838
`);
3939
});

0 commit comments

Comments
 (0)