aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/hashmap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/hashmap.h b/common/hashmap.h
index e840267796..16de7cdf54 100644
--- a/common/hashmap.h
+++ b/common/hashmap.h
@@ -211,7 +211,7 @@ public:
uint size() const { return _size; }
iterator begin() {
- // Find and return the _key non-empty entry
+ // Find and return the first non-empty entry
for (uint ctr = 0; ctr <= _mask; ++ctr) {
if (_storage[ctr])
return iterator(ctr, this);