Fixed typo varaible -> variable

This commit is contained in:
K-ballo
2014-07-18 21:57:34 -03:00
parent 74b5bea140
commit 9b3c90a320
4 changed files with 7 additions and 7 deletions

View File

@ -40,8 +40,8 @@
</p>
<p>
In other words, inherits from <a class="link" href="integral_constant.html" title="integral_constant">true_type</a>
only if expression <code class="computeroutput"><span class="identifier">varaible1</span> <span class="special">=</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">move</span><span class="special">(</span><span class="identifier">varaible2</span><span class="special">)</span></code> won't throw (<code class="computeroutput"><span class="identifier">varaible1</span></code>
and <code class="computeroutput"><span class="identifier">varaible2</span></code> are variables
only if expression <code class="computeroutput"><span class="identifier">variable1</span> <span class="special">=</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">move</span><span class="special">(</span><span class="identifier">variable2</span><span class="special">)</span></code> won't throw (<code class="computeroutput"><span class="identifier">variable1</span></code>
and <code class="computeroutput"><span class="identifier">variable2</span></code> are variables
of type <code class="computeroutput"><span class="identifier">T</span></code>).
</p>
<p>

View File

@ -39,7 +39,7 @@
</p>
<p>
In other words, inherits from <a class="link" href="integral_constant.html" title="integral_constant">true_type</a>
only if expression <code class="computeroutput"><span class="identifier">T</span><span class="special">(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">move</span><span class="special">(</span><span class="identifier">varaible1</span><span class="special">))</span></code> won't throw (<code class="computeroutput"><span class="identifier">varaible1</span></code>
only if expression <code class="computeroutput"><span class="identifier">T</span><span class="special">(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">move</span><span class="special">(</span><span class="identifier">variable1</span><span class="special">))</span></code> won't throw (<code class="computeroutput"><span class="identifier">variable1</span></code>
is a variable of type <code class="computeroutput"><span class="identifier">T</span></code>).
</p>
<p>

View File

@ -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.

View File

@ -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.