Skip to content

Commit

Permalink
refactor: ♻️ update command group name
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesChung committed Apr 9, 2023
1 parent 0252e16 commit 4df89cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/console/console.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ func NewCmd() *cobra.Command {
Example: example,
}
setPersistentFlags(cmd.PersistentFlags())
util.AddGroup(cmd, "Console:", consoleCommands()...)
util.AddGroup(cmd, "Commands:", consoleCommands()...)
return cmd
}
2 changes: 1 addition & 1 deletion cmd/credentials/credentials.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ func NewCmd() *cobra.Command {
Example: example,
}
setPersistentFlags(cmd.PersistentFlags())
util.AddGroup(cmd, "Credentials:", credentialsCommands()...)
util.AddGroup(cmd, "Commands:", credentialsCommands()...)
return cmd
}

0 comments on commit 4df89cd

Please # to comment.