From f32286d5fff860435d670a0fd63e3797b6dca485 Mon Sep 17 00:00:00 2001 From: Nicolas Pinto Date: Tue, 18 Dec 2018 15:44:28 -0800 Subject: [PATCH] Small typo in stake/client/cli/tx.go (#3157) * FIX: small typo in stake/client/cli/tx.go * FIX: another typo in stake/client/cli/tx.go --- x/stake/client/cli/tx.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x/stake/client/cli/tx.go b/x/stake/client/cli/tx.go index c5f2f587c5..7df069c742 100644 --- a/x/stake/client/cli/tx.go +++ b/x/stake/client/cli/tx.go @@ -62,7 +62,7 @@ func GetCmdCreateValidator(cdc *codec.Codec) *cobra.Command { func GetCmdEditValidator(cdc *codec.Codec) *cobra.Command { cmd := &cobra.Command{ Use: "edit-validator", - Short: "edit and existing validator account", + Short: "edit an existing validator account", RunE: func(cmd *cobra.Command, args []string) error { txBldr := authtxb.NewTxBuilderFromCLI().WithTxEncoder(auth.DefaultTxEncoder(cdc)) cliCtx := context.NewCLIContext(). @@ -114,7 +114,7 @@ func GetCmdEditValidator(cdc *codec.Codec) *cobra.Command { func GetCmdDelegate(cdc *codec.Codec) *cobra.Command { cmd := &cobra.Command{ Use: "delegate", - Short: "delegate liquid tokens to an validator", + Short: "delegate liquid tokens to a validator", RunE: func(cmd *cobra.Command, args []string) error { txBldr := authtxb.NewTxBuilderFromCLI().WithTxEncoder(auth.DefaultTxEncoder(cdc)) cliCtx := context.NewCLIContext().