Skip to content

Commit

Permalink
docs(collections): fixed typo in collections/collections.go (#19814)
Browse files Browse the repository at this point in the history
Signed-off-by: Hwangjae Lee <meetrick@gmail.com>
  • Loading branch information
meetrick authored Mar 21, 2024
1 parent 8b4081f commit 632c3f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion collections/collections.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 632c3f1

Please sign in to comment.