From 2f335a2b8cc4fcfa337c104823fab9f6ecb387da Mon Sep 17 00:00:00 2001 From: Ron Stoner Date: Tue, 11 Jan 2022 17:38:44 -0500 Subject: [PATCH] Fixed typo in block module help output (#10926) Co-authored-by: Marko --- client/rpc/block.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/rpc/block.go b/client/rpc/block.go index b4e6150532..1594fe9e66 100644 --- a/client/rpc/block.go +++ b/client/rpc/block.go @@ -16,7 +16,7 @@ import ( func BlockCommand() *cobra.Command { cmd := &cobra.Command{ Use: "block [height]", - Short: "Get verified data for a the block at given height", + Short: "Get verified data for the block at given height", Args: cobra.MaximumNArgs(1), RunE: func(cmd *cobra.Command, args []string) error { clientCtx, err := client.GetClientQueryContext(cmd)