diff --git a/doc/common_type.qbk b/doc/common_type.qbk index 1d31ec1..a34b9bb 100644 --- a/doc/common_type.qbk +++ b/doc/common_type.qbk @@ -57,7 +57,7 @@ then the maximum number of template arguments is 3. When the compiler does not support static assertions then the user can select the way static assertions are reported. Define * BOOST_COMMON_TYPE_USES_STATIC_ASSERT: define it if you want to use Boost.StaticAssert -* BOOST_COMMON_TYPE_USES_MPL_ASSERT: define it if you want to use Boost.MPL static asertions +* BOOST_COMMON_TYPE_USES_MPL_ASSERT: define it if you want to use Boost.MPL static assertions The default behavior is to use mpl assertions in this case, but setting BOOST_COMMON_TYPE_USES_STATIC_ASSERT may reduce compile times and header dependencies somewhat. diff --git a/doc/examples.qbk b/doc/examples.qbk index fdcfb74..e747ae8 100644 --- a/doc/examples.qbk +++ b/doc/examples.qbk @@ -146,18 +146,18 @@ determine whether to destructors need to be called [section:iter An improved Version of std::iter_swap] Demonstrates a version of `std::iter_swap` that use type traits to -determine whether an it's arguments are proxying iterators or not, +determine whether an it's arguments are proxy iterators or not, if they're not then it just does a `std::swap` of it's dereferenced arguments (the -same as `std::iter_swap` does), however if they are proxying iterators +same as `std::iter_swap` does), however if they are proxy iterators then takes special care over the swap to ensure that the algorithm -works correctly for both proxying iterators, and even iterators of +works correctly for both proxy iterators, and even iterators of different types (see [@../../examples/iter_swap_example.cpp iter_swap_example.cpp]): // // iter_swap: - // tests whether iterator is a proxying iterator or not, and + // tests whether iterator is a proxy iterator or not, and // uses optimal form accordingly: // namespace detail{ diff --git a/doc/html/boost_typetraits/background.html b/doc/html/boost_typetraits/background.html index 30bbb21..1971d4a 100644 --- a/doc/html/boost_typetraits/background.html +++ b/doc/html/boost_typetraits/background.html @@ -3,7 +3,7 @@ Background and Tutorial - + @@ -57,7 +57,7 @@

- Type + Type Traits

@@ -86,7 +86,7 @@

- Implementation + Implementation

There are far too many separate classes contained in the type-traits library @@ -176,7 +176,7 @@

- Optimized + Optimized copy

@@ -195,7 +195,7 @@ copy in terms of memcpy all of the following conditions need to be met:

-
- Boost + Boost 1.47.0
-