From 21032c9cf85f0b71ea9b0afcbf866015a83d6f68 Mon Sep 17 00:00:00 2001 From: Taeguk Kwon Date: Mon, 27 Nov 2023 17:53:34 +0700 Subject: [PATCH] chore: fix typos (#18559) --- types/mempool/mempool.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/mempool/mempool.go b/types/mempool/mempool.go index 37f94d8f4d..7051c93e31 100644 --- a/types/mempool/mempool.go +++ b/types/mempool/mempool.go @@ -13,7 +13,7 @@ type Mempool interface { Insert(context.Context, sdk.Tx) error // Select returns an Iterator over the app-side mempool. If txs are specified, - // then they shall be incorporated into the Iterator. The Iterator must + // then they shall be incorporated into the Iterator. The Iterator must be // closed by the caller. Select(context.Context, [][]byte) Iterator