diff --git a/libcxx/include/__hash_table b/libcxx/include/__hash_table --- a/libcxx/include/__hash_table +++ b/libcxx/include/__hash_table @@ -2506,11 +2506,11 @@ { #if _LIBCPP_DEBUG_LEVEL == 2 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__first) == this, - "unodered container::erase(iterator, iterator) called with an iterator not" - " referring to this unodered container"); + "unordered container::erase(iterator, iterator) called with an iterator not" + " referring to this container"); _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__last) == this, - "unodered container::erase(iterator, iterator) called with an iterator not" - " referring to this unodered container"); + "unordered container::erase(iterator, iterator) called with an iterator not" + " referring to this container"); #endif for (const_iterator __p = __first; __first != __last; __p = __first) {