corrected typo

This commit is contained in:
cyborg1811m 2024-01-15 11:52:00 +01:00
parent df1f8a82ed
commit 5c93794d68
1 changed files with 1 additions and 1 deletions

View File

@ -1011,7 +1011,7 @@ int main(int, char *[])
std::cout << "Test of constructor 'const_vector(InputIt first, InputIt last)': " << test_const_vector::test_constructor_iterator() << std::endl;
std::cout << "Test of copy constructors: " << test_const_vector::test_constructor_copy() << std::endl;
std::cout << "Test of move constructor: " << test_const_vector::test_constructor_move() << std::endl;
std::cout << "Test of move constructor: " << test_const_vector::test_operator_eq() << std::endl;
std::cout << "Test of operator=: " << test_const_vector::test_operator_eq() << std::endl;
return 0;
}