@@ -2053,7 +2053,7 @@ list<_Tp, _Alloc>::splice(const_iterator __p, list& __c, const_iterator __i)
2053
2053
" not referring to this list" );
2054
2054
_LIBCPP_ASSERT (__get_const_db ()->__find_c_from_i (&__i) == &__c,
2055
2055
" list::splice(iterator, list, iterator) called with the second iterator"
2056
- " not referring to list argument" );
2056
+ " not referring to the list argument" );
2057
2057
_LIBCPP_ASSERT (__get_const_db ()->__dereferenceable (&__i),
2058
2058
" list::splice(iterator, list, iterator) called with the second iterator"
2059
2059
" not dereferenceable" );
@@ -2098,10 +2098,10 @@ list<_Tp, _Alloc>::splice(const_iterator __p, list& __c, const_iterator __f, con
2098
2098
" referring to this list" );
2099
2099
_LIBCPP_ASSERT (__get_const_db ()->__find_c_from_i (&__f) == &__c,
2100
2100
" list::splice(iterator, list, iterator, iterator) called with second iterator not"
2101
- " referring to list argument" );
2101
+ " referring to the list argument" );
2102
2102
_LIBCPP_ASSERT (__get_const_db ()->__find_c_from_i (&__l) == &__c,
2103
2103
" list::splice(iterator, list, iterator, iterator) called with third iterator not"
2104
- " referring to list argument" );
2104
+ " referring to the list argument" );
2105
2105
if (this == &__c)
2106
2106
{
2107
2107
for (const_iterator __i = __f; __i != __l; ++__i)
0 commit comments