Skip to content

Commit e7b9980

Browse files
author
Juhyung Park
committed
Fix error message
1 parent f6cf166 commit e7b9980

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/error.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ export function getErrorMessage(type: CLIErrorType, args: any) {
1818
args = args || {};
1919
switch (type) {
2020
case CLIErrorType.InvalidAccountType:
21-
return "First argument should be 'platform' or 'asset'";
21+
return "Account-type should be 'platform' or 'asset'";
2222
case CLIErrorType.InvalidAction:
23-
return `Second argument should one of the ${JSON.stringify(
23+
return `Action should one of the ${JSON.stringify(
2424
actions
2525
)}`;
2626
case CLIErrorType.OptionRequired:

0 commit comments

Comments
 (0)