Update a comment

This commit is contained in:
Henrik Rydgård
2023-05-04 09:49:14 +02:00
parent 75521c35f7
commit fcd11dfd4c
+1 -1
View File
@@ -56,7 +56,7 @@ public:
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) {