diff --git a/doc/html/boost_typetraits/reference/is_nothrow_move_assignable.html b/doc/html/boost_typetraits/reference/is_nothrow_move_assignable.html index 9fd6f8f..29b804f 100644 --- a/doc/html/boost_typetraits/reference/is_nothrow_move_assignable.html +++ b/doc/html/boost_typetraits/reference/is_nothrow_move_assignable.html @@ -40,8 +40,8 @@

In other words, inherits from true_type - only if expression varaible1 = std::move(varaible2) won't throw (varaible1 - and varaible2 are variables + only if expression variable1 = std::move(variable2) won't throw (variable1 + and variable2 are variables of type T).

diff --git a/doc/html/boost_typetraits/reference/is_nothrow_move_constructible.html b/doc/html/boost_typetraits/reference/is_nothrow_move_constructible.html index d43f291..741400e 100644 --- a/doc/html/boost_typetraits/reference/is_nothrow_move_constructible.html +++ b/doc/html/boost_typetraits/reference/is_nothrow_move_constructible.html @@ -39,7 +39,7 @@

In other words, inherits from true_type - only if expression T(std::move(varaible1)) won't throw (varaible1 + only if expression T(std::move(variable1)) won't throw (variable1 is a variable of type T).

diff --git a/doc/is_nothrow_move_assignable.qbk b/doc/is_nothrow_move_assignable.qbk index 107f660..5e0edb9 100644 --- a/doc/is_nothrow_move_assignable.qbk +++ b/doc/is_nothrow_move_assignable.qbk @@ -16,8 +16,8 @@ or a type without move assignment-operator but with non-throwing assignment-oper then inherits from __true_type, otherwise inherits from __false_type. Type `T` must be a complete type. -In other words, inherits from __true_type only if expression `varaible1 = std::move(varaible2)` -won't throw (`varaible1` and `varaible2` are variables of type `T`). +In other words, inherits from __true_type only if expression `variable1 = std::move(variable2)` +won't throw (`variable1` and `variable2` are variables of type `T`). __compat If the compiler does not support partial-specialization of class templates, then this template can not be used with function types. diff --git a/doc/is_nothrow_move_constructible.qbk b/doc/is_nothrow_move_constructible.qbk index 797af4c..863054b 100644 --- a/doc/is_nothrow_move_constructible.qbk +++ b/doc/is_nothrow_move_constructible.qbk @@ -16,8 +16,8 @@ or a type without move-constructor but with non-throwing copy-constructor, then inherits from __true_type, otherwise inherits from __false_type. Type `T` must be a complete type. -In other words, inherits from __true_type only if expression `T(std::move(varaible1))` -won't throw (`varaible1` is a variable of type `T`). +In other words, inherits from __true_type only if expression `T(std::move(variable1))` +won't throw (`variable1` is a variable of type `T`). __compat If the compiler does not support partial-specialization of class templates, then this template can not be used with function types.