From 29dd9187ec7863824176e27362c428c6911d6f44 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 1 Nov 2022 21:46:25 -0400 Subject: [PATCH] spelling: convertibility Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- test/optional_test_ref_portable_minimum.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/optional_test_ref_portable_minimum.cpp b/test/optional_test_ref_portable_minimum.cpp index ec5b827..bf7af32 100644 --- a/test/optional_test_ref_portable_minimum.cpp +++ b/test/optional_test_ref_portable_minimum.cpp @@ -431,7 +431,7 @@ void test_swap() } template -void test_convertability_of_compatible_reference_types() +void test_convertibility_of_compatible_reference_types() { typename concrete_type_of::type v1(1); optional oN, o1(v1); @@ -489,11 +489,11 @@ int main() test_optional_const_ref(); test_optional_const_ref< optional >(); - test_convertability_of_compatible_reference_types(); - test_convertability_of_compatible_reference_types(); - test_convertability_of_compatible_reference_types(); - test_convertability_of_compatible_reference_types(); - test_convertability_of_compatible_reference_types, const optional >(); + test_convertibility_of_compatible_reference_types(); + test_convertibility_of_compatible_reference_types(); + test_convertibility_of_compatible_reference_types(); + test_convertibility_of_compatible_reference_types(); + test_convertibility_of_compatible_reference_types, const optional >(); return boost::report_errors(); }