Skip to content

Commit

Permalink
fix typo in comment (erase instead of _erase)
Browse files Browse the repository at this point in the history
  • Loading branch information
greg7mdp committed Nov 29, 2022
1 parent d676385 commit c36739b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions parallel_hashmap/phmap.h
Original file line number Diff line number Diff line change
Expand Up @@ -4700,7 +4700,7 @@ class flat_hash_map : public phmap::priv::raw_hash_map<
// hashing function and equality operator.
// * Contains a `capacity()` member function indicating the number of element
// slots (open, deleted, and empty) within the hash set.
// * Returns `void` from the `erase(iterator)` overload.
// * Returns `void` from the `_erase(iterator)` overload.
// -----------------------------------------------------------------------------
template <class T, class Hash, class Eq, class Alloc> // default values in phmap_fwd_decl.h
class node_hash_set
Expand Down Expand Up @@ -4765,7 +4765,7 @@ class node_hash_set
// hashing function and equality operator.
// * Contains a `capacity()` member function indicating the number of element
// slots (open, deleted, and empty) within the hash map.
// * Returns `void` from the `erase(iterator)` overload.
// * Returns `void` from the `_erase(iterator)` overload.
// -----------------------------------------------------------------------------
template <class Key, class Value, class Hash, class Eq, class Alloc> // default values in phmap_fwd_decl.h
class node_hash_map
Expand Down

0 comments on commit c36739b

Please sign in to comment.