Skip to content

Commit

Permalink
docs: fix typo in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabri3l committed Jun 26, 2024
1 parent bad7253 commit 3dd2a57
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion builtin_map_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ func createOrderedMap(vm *Runtime, size int) *orderedMap {
value: value,
}
// These iter items are necessary for testing the mem usage
// estimation since that's who we iterate through the map.
// estimation since that's how we iterate through the map.
if i > 0 {
ht[uint64(i)].iterPrev = ht[uint64(i-1)]
ht[uint64(i-1)].iterNext = ht[uint64(i)]
Expand Down
2 changes: 1 addition & 1 deletion builtin_set_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ func createOrderedMapWithNilValues(size int) *orderedMap {
value: nil,
}
// These iter items are necessary for testing the mem usage
// estimation since that's who we iterate through the map.
// estimation since that's how we iterate through the map.
if i > 0 {
ht[uint64(i)].iterPrev = ht[uint64(i-1)]
ht[uint64(i-1)].iterNext = ht[uint64(i)]
Expand Down

0 comments on commit 3dd2a57

Please sign in to comment.