spelling: optional

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2022-11-01 21:46:31 -04:00
committed by Andrzej Krzemienski
parent 599c72f23b
commit 4b63acfc10
13 changed files with 18 additions and 18 deletions

View File

@ -70,7 +70,7 @@ void test_value_init()
}
}
void test_optoinal_reference_wrapper()
void test_optional_reference_wrapper()
{
boost::optional<W<S&> > o;
BOOST_TEST(boost::none == o);
@ -80,7 +80,7 @@ int main()
{
test_tc_base();
test_value_init();
test_optoinal_reference_wrapper();
test_optional_reference_wrapper();
return boost::report_errors();
}