Skip to content

Commit

Permalink
Update a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
hrydgard committed May 4, 2023
1 parent 75521c3 commit fcd11df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Common/Data/Collections/Hashmaps.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class DenseHashMap {
return NullValue;
}

// Returns false if we already had the key! Which is a bit different.
// Asserts if we already had the key!
bool Insert(const Key &key, Value value) {
// Check load factor, resize if necessary. We never shrink.
if (count_ > capacity_ / 2) {
Expand Down

0 comments on commit fcd11df

Please sign in to comment.