Index: boost/locale/date_time.hpp =================================================================== --- boost/locale/date_time.hpp (revision 81672) +++ boost/locale/date_time.hpp (working copy) @@ -104,7 +104,7 @@ /// /// Get period_type for: Day of week, Sunday=1, Monday=2,..., Saturday=7. /// - /// Note that that updating this value respects local day of week, so for example, + /// Note that updating this value respects local day of week, so for example, /// If first day of week is Monday and the current day is Tuesday then setting /// the value to Sunday (1) would forward the date by 5 days forward and not backward /// by two days as it could be expected if the numbers were taken as is. @@ -179,7 +179,7 @@ /// /// Get date_time_period for: Day of week, Sunday=1, Monday=2,..., Saturday=7. /// - /// Note that that updating this value respects local day of week, so for example, + /// Note that updating this value respects local day of week, so for example, /// If first day of week is Monday and the current day is Tuesday then setting /// the value to Sunday (1) would forward the date by 5 days forward and not backward /// by two days as it could be expected if the numbers were taken as is. @@ -1009,7 +1009,7 @@ /// /// Extract from date_time numerical value of Day of week, Sunday=1, Monday=2,..., Saturday=7. /// - /// Note that that updating this value respects local day of week, so for example, + /// Note that updating this value respects local day of week, so for example, /// If first day of week is Monday and the current day is Tuesday then setting /// the value to Sunday (1) would forward the date by 5 days forward and not backward /// by two days as it could be expected if the numbers were taken as is. Index: boost/locale/date_time_facet.hpp =================================================================== --- boost/locale/date_time_facet.hpp (revision 81672) +++ boost/locale/date_time_facet.hpp (working copy) @@ -37,7 +37,7 @@ day, ///< The day of month, calendar specific, in Gregorian [1..31] day_of_year, ///< The number of day in year, starting from 1, in Gregorian [1..366] day_of_week, ///< Day of week, Sunday=1, Monday=2,..., Saturday=7. - ///< Note that that updating this value respects local day of week, so for example, + ///< Note that updating this value respects local day of week, so for example, ///< If first day of week is Monday and the current day is Tuesday then setting ///< the value to Sunday (1) would forward the date by 5 days forward and not backward ///< by two days as it could be expected if the numbers were taken as is. Index: boost/locale/utf.hpp =================================================================== --- boost/locale/utf.hpp (revision 81672) +++ boost/locale/utf.hpp (working copy) @@ -29,7 +29,7 @@ /// \endcond /// - /// \brief The integral type type that can hold a Unicode code point + /// \brief The integral type that can hold a Unicode code point /// typedef uint32_t code_point; Index: boost/locale/util.hpp =================================================================== --- boost/locale/util.hpp (revision 81672) +++ boost/locale/util.hpp (working copy) @@ -133,7 +133,7 @@ /// and [\a begin, \a code_point_end) would be valid input sequence, then \a incomplete is returned begin stays unchanged, for example /// for UTF-8 conversion a *begin = 0xc2, \a begin +1 = \a end is such situation. /// - /// if invalid input sequence found, i.e. there there is a sequence [\a begin, \a code_point_end) such as \a code_point_end <= \a end + /// if invalid input sequence found, i.e. there is a sequence [\a begin, \a code_point_end) such as \a code_point_end <= \a end /// that is illegal for this encoding, \a illegal is returned and begin stays unchanged. For example if *begin = 0xFF and begin < end /// for UTF-8, then \a illegal is returned. ///