spelling: uninitialized

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2022-11-01 21:46:38 -04:00
committed by Andrzej Krzemienski
parent 246f1663e1
commit 46ad495a60
5 changed files with 7 additions and 7 deletions

View File

@ -727,7 +727,7 @@ void test_relops( T const* )
BOOST_TEST ( !(def0 != def0) ) ;
BOOST_TEST ( !(opt0 != opt0) ) ;
// Check when both are uininitalized.
// Check when both are uninitialized.
BOOST_TEST ( def0 == def1 ) ; // both uninitialized compare equal
BOOST_TEST ( !(def0 < def1) ) ; // uninitialized is never less than uninitialized
BOOST_TEST ( !(def0 > def1) ) ; // uninitialized is never greater than uninitialized