Ticket #7602: fix_doc_typo.patch

File fix_doc_typo.patch, 1.2 KB (added by oss.2012.team+C4@…, 10 years ago)

Patch for libs/optional/doc/reference.qbk

  • libs/optional/doc/reference.qbk

     
    386386* [*Effect:] (Re)binds the wrapped reference.
    387387* [*Postconditions: ] `*this` is initialized and it references the same
    388388object referenced by `rhs`.
    389 * [*Notes:] If `*this` was initialized, is is ['rebound] to the new object.
     389* [*Notes:] If `*this` was initialized, it is ['rebound] to the new object.
    390390See [link boost_optional.rebinding_semantics_for_assignment_of_optional_references here] for details on this behavior.
    391391* [*Example:]
    392392``
     
    445445* [*Postconditions:] If `*rhs` is initialized, `*this` is initialized and it
    446446references the same object referenced by `*rhs`; otherwise, `*this` is
    447447uninitialized (and references no object).
    448 * [*Notes:] If `*this` was initialized and so is *rhs, this is is ['rebound] to
     448* [*Notes:] If `*this` was initialized and so is `*rhs`, `*this` is ['rebound] to
    449449the new object. See [link boost_optional.rebinding_semantics_for_assignment_of_optional_references here] for details on this behavior.
    450450* [*Example:]
    451451``