From 4256c99a84841d8aabbc428eb31e80763bd5abc7 Mon Sep 17 00:00:00 2001 From: vastonus Date: Thu, 16 Oct 2025 17:16:00 +0800 Subject: [PATCH] chore: fix typo in comment Signed-off-by: vastonus --- types/queries.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/queries.go b/types/queries.go index b847965fc..3fe91d719 100644 --- a/types/queries.go +++ b/types/queries.go @@ -386,7 +386,7 @@ type RawRangeQuery struct { ContractAddr string `json:"contract_addr"` // Inclusive start bound. This is the first key you would like to get data for. // - // If `start` is lexicographically greater than or equal to `end`, an empty range is described, mo matter of the order. + // If `start` is lexicographically greater than or equal to `end`, an empty range is described, no matter of the order. Start []byte `json:"start,omitempty"` // Exclusive end bound. This is the key after the last key you would like to get data for. End []byte `json:"end,omitempty"`