From 632c3f19e5b4ccebae62d32507a677345d35705a Mon Sep 17 00:00:00 2001 From: Hwangjae Lee Date: Fri, 22 Mar 2024 00:19:06 +0900 Subject: [PATCH] docs(collections): fixed typo in `collections/collections.go` (#19814) Signed-off-by: Hwangjae Lee --- collections/collections.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collections/collections.go b/collections/collections.go index 0f6b322533..6a7b2a0934 100644 --- a/collections/collections.go +++ b/collections/collections.go @@ -29,7 +29,7 @@ var ( Uint64Key = codec.NewUint64Key[uint64]() // Int32Key can be used to encode int32 keys. Encoding retains ordering by toggling the MSB. Int32Key = codec.NewInt32Key[int32]() - // Int64Key can be used to encode int64. Encoding retains ordering by toggling the MSB. + // Int64Key can be used to encode int64 keys. Encoding retains ordering by toggling the MSB. Int64Key = codec.NewInt64Key[int64]() // StringKey can be used to encode string keys. The encoding just converts the string // to bytes.