From e300c4bc605c05059bdd8d099a61e06ff3aafc91 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 1 Nov 2022 22:05:13 -0400 Subject: [PATCH] spelling: value Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- test/optional_test.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/optional_test.cpp b/test/optional_test.cpp index 36e6afd..5ec0016 100644 --- a/test/optional_test.cpp +++ b/test/optional_test.cpp @@ -164,7 +164,7 @@ void test_basics( T const* ) } template -void test_conditional_ctor_and_get_valur_or ( T const* ) +void test_conditional_ctor_and_get_value_or ( T const* ) { TRACE( std::endl << BOOST_CURRENT_FUNCTION ); @@ -835,7 +835,7 @@ void test_with_builtin_types() TRACE( std::endl << BOOST_CURRENT_FUNCTION ); test_basics( ARG(double) ); - test_conditional_ctor_and_get_valur_or( ARG(double) ); + test_conditional_ctor_and_get_value_or( ARG(double) ); test_uninitialized_access( ARG(double) ); test_no_throwing_swap( ARG(double) ); test_relops( ARG(double) ) ; @@ -857,7 +857,7 @@ void test_with_class_type() test_basics( ARG(X) ); test_basics( ARG(VBase) ); - test_conditional_ctor_and_get_valur_or( ARG(X) ); + test_conditional_ctor_and_get_value_or( ARG(X) ); test_direct_value_manip( ARG(X) ); test_uninitialized_access( ARG(X) ); test_throwing_direct_init( ARG(X) );