From 0a2481d9e4735e8f60b856f7b8a66b8d79b88d4b Mon Sep 17 00:00:00 2001 From: tom Date: Tue, 30 Apr 2024 18:05:58 +0800 Subject: [PATCH] chore: remove duplicate word (#20216) --- client/context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/context.go b/client/context.go index 2d513c81b3..ef8940c119 100644 --- a/client/context.go +++ b/client/context.go @@ -107,7 +107,7 @@ func (ctx Context) WithKeyringOptions(opts ...keyring.Option) Context { // WithInput returns a copy of the context with an updated input. func (ctx Context) WithInput(r io.Reader) Context { // convert to a bufio.Reader to have a shared buffer between the keyring and the - // the Commands, ensuring a read from one advance the read pointer for the other. + // Commands, ensuring a read from one advance the read pointer for the other. // see https://github.com/cosmos/cosmos-sdk/issues/9566. ctx.Input = bufio.NewReader(r) return ctx