From 9b3c90a32015441a4ed316f7b9c265ed44b71a38 Mon Sep 17 00:00:00 2001 From: K-ballo Date: Fri, 18 Jul 2014 21:57:34 -0300 Subject: [PATCH] Fixed typo varaible -> variable --- .../reference/is_nothrow_move_assignable.html | 4 ++-- .../reference/is_nothrow_move_constructible.html | 2 +- doc/is_nothrow_move_assignable.qbk | 4 ++-- doc/is_nothrow_move_constructible.qbk | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) 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.