diff options
-rw-r--r-- | common/hashmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/hashmap.h b/common/hashmap.h index 825f46ab37..1493b9ff3d 100644 --- a/common/hashmap.h +++ b/common/hashmap.h @@ -259,7 +259,7 @@ void HashMap<Key, Val, HashFunc, EqualFunc>::expand_array(uint newsize) { continue; // Insert the element from the old table into the new table. - // Since we know that no key exists twice the old table, we + // Since we know that no key exists twice in the old table, we // can do this slightly better than by calling lookup, since we // don't have to call _equal(). dex = _hash(old_arr[ctr]->_key) % _arrsize; |