Skip to content

Commit

Permalink
fix: Copy
Browse files Browse the repository at this point in the history
  • Loading branch information
simonas-notcat committed Nov 14, 2019
1 parent 2b2c00f commit 9cbff8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/daf-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Options:
-l, --list List managed identities
-t, --types List available identity controller types
-c, --create <type> Create identity using <type> identity controller
-d, --delete <did> Create identity using <type> identity controller
-d, --delete <did> Delete identity
-h, --help output usage information
```

Expand Down
3 changes: 1 addition & 2 deletions packages/daf-cli/src/identity-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ program
.option('-l, --list', 'List managed identities')
.option('-t, --types', 'List available identity controller types')
.option('-c, --create <type>', 'Create identity using <type> identity controller')
.option('-d, --delete <did>', 'Create identity using <type> identity controller')
.option('-d, --delete <did>', 'Delete identity')
.action(async (cmd) => {
if (cmd.types) {
const list = await core.identityManager.listTypes()
Expand Down Expand Up @@ -62,4 +62,3 @@ program


})

0 comments on commit 9cbff8a

Please sign in to comment.