Index: libs/type_traits/doc/html/boost_typetraits/background.html =================================================================== --- libs/type_traits/doc/html/boost_typetraits/background.html (revision 66368) +++ libs/type_traits/doc/html/boost_typetraits/background.html (working copy) @@ -67,7 +67,7 @@ specific traits classes, each of which encapsulate a single trait from the C++ type system; for example, is a type a pointer or a reference type? Or does a type have a trivial constructor, or a const-qualifier? The type-traits classes - share a unified design: each class inherits from a the type true_type + share a unified design: each class inherits from the type true_type if the type has the specified property and inherits from false_type otherwise. As we will show, these classes can be used in generic programming to determine the properties of a given type and introduce optimizations that Index: libs/type_traits/doc/html/boost_typetraits/intro.html =================================================================== --- libs/type_traits/doc/html/boost_typetraits/intro.html (revision 66368) +++ libs/type_traits/doc/html/boost_typetraits/intro.html (working copy) @@ -33,7 +33,7 @@ or a const-qualifier?

- The type-traits classes share a unified design: each class inherits from a + The type-traits classes share a unified design: each class inherits from the type true_type if the type has the specified property and inherits from false_type otherwise.