docs(collections): fixed typo in collections/collections.go (#19814)

Signed-off-by: Hwangjae Lee <meetrick@gmail.com>
This commit is contained in:
Hwangjae Lee 2024-03-22 00:19:06 +09:00 committed by GitHub
parent 8b4081f8bb
commit 632c3f19e5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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.