Ticket #4810: grammar-fix--intro-background.patch

File grammar-fix--intro-background.patch, 2.0 KB (added by pete@…, 12 years ago)

Patch for grammar glitch in background.html and intro.html.

  • libs/type_traits/doc/html/boost_typetraits/background.html

     
    6767      specific traits classes, each of which encapsulate a single trait from the
    6868      C++ type system; for example, is a type a pointer or a reference type? Or does
    6969      a type have a trivial constructor, or a const-qualifier? The type-traits classes
    70       share a unified design: each class inherits from a the type <a class="link" href="reference/integral_constant.html" title="integral_constant">true_type</a>
     70      share a unified design: each class inherits from the type <a class="link" href="reference/integral_constant.html" title="integral_constant">true_type</a>
    7171      if the type has the specified property and inherits from <a class="link" href="reference/integral_constant.html" title="integral_constant">false_type</a>
    7272      otherwise. As we will show, these classes can be used in generic programming
    7373      to determine the properties of a given type and introduce optimizations that
  • libs/type_traits/doc/html/boost_typetraits/intro.html

     
    3333      or a const-qualifier?
    3434    </p>
    3535<p>
    36       The type-traits classes share a unified design: each class inherits from a
     36      The type-traits classes share a unified design: each class inherits from
    3737      the type <a class="link" href="reference/integral_constant.html" title="integral_constant">true_type</a>
    3838      if the type has the specified property and inherits from <a class="link" href="reference/integral_constant.html" title="integral_constant">false_type</a>
    3939      otherwise.