From 90df7fd7384b49d42dd39c035435d6b55709b24b Mon Sep 17 00:00:00 2001 From: Anthony Romano Date: Wed, 13 Apr 2016 16:18:00 -0700 Subject: [PATCH] etcdctl: display required arguments for member commands in usage --- etcdctl/ctlv3/command/member_command.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/etcdctl/ctlv3/command/member_command.go b/etcdctl/ctlv3/command/member_command.go index 0edc1a768..ded282744 100644 --- a/etcdctl/ctlv3/command/member_command.go +++ b/etcdctl/ctlv3/command/member_command.go @@ -42,7 +42,7 @@ func NewMemberCommand() *cobra.Command { // NewMemberAddCommand returns the cobra command for "member add". func NewMemberAddCommand() *cobra.Command { cc := &cobra.Command{ - Use: "add", + Use: "add ", Short: "add is used to add a member into the cluster", Run: memberAddCommandFunc, @@ -56,7 +56,7 @@ func NewMemberAddCommand() *cobra.Command { // NewMemberRemoveCommand returns the cobra command for "member remove". func NewMemberRemoveCommand() *cobra.Command { cc := &cobra.Command{ - Use: "remove", + Use: "remove ", Short: "remove is used to remove a member from the cluster", Run: memberRemoveCommandFunc, @@ -68,7 +68,7 @@ func NewMemberRemoveCommand() *cobra.Command { // NewMemberUpdateCommand returns the cobra command for "member update". func NewMemberUpdateCommand() *cobra.Command { cc := &cobra.Command{ - Use: "update", + Use: "update ", Short: "update is used to update a member in the cluster", Run: memberUpdateCommandFunc,