[libcxx-commits] [PATCH] D102354: [libcxx] NFC. Fix misprint unodered -> unordered

Kristina Bessonova via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Wed May 12 12:39:02 PDT 2021


krisb created this revision.
krisb added a reviewer: Quuxplusone.
krisb requested review of this revision.
Herald added a project: libc++.
Herald added a subscriber: libcxx-commits.
Herald added a reviewer: libc++.

Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D102354

Files:
  libcxx/include/__hash_table


Index: libcxx/include/__hash_table
===================================================================
--- libcxx/include/__hash_table
+++ 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 unordered 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 unordered container");
 #endif
     for (const_iterator __p = __first; __first != __last; __p = __first)
     {


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D102354.344915.patch
Type: text/x-patch
Size: 1006 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20210512/13d78ddf/attachment-0001.bin>


More information about the libcxx-commits mailing list