$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r82151 - trunk/boost/locale
From: artyomtnk_at_[hidden]
Date: 2012-12-21 09:33:10
Author: artyom
Date: 2012-12-21 09:33:09 EST (Fri, 21 Dec 2012)
New Revision: 82151
URL: http://svn.boost.org/trac/boost/changeset/82151
Log:
Comment typo patch, closing #7762
Text files modified: 
   trunk/boost/locale/date_time.hpp       |     6 +++---                                  
   trunk/boost/locale/date_time_facet.hpp |     2 +-                                      
   trunk/boost/locale/utf.hpp             |     2 +-                                      
   trunk/boost/locale/util.hpp            |     2 +-                                      
   4 files changed, 6 insertions(+), 6 deletions(-)
Modified: trunk/boost/locale/date_time.hpp
==============================================================================
--- trunk/boost/locale/date_time.hpp	(original)
+++ trunk/boost/locale/date_time.hpp	2012-12-21 09:33:09 EST (Fri, 21 Dec 2012)
@@ -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.
Modified: trunk/boost/locale/date_time_facet.hpp
==============================================================================
--- trunk/boost/locale/date_time_facet.hpp	(original)
+++ trunk/boost/locale/date_time_facet.hpp	2012-12-21 09:33:09 EST (Fri, 21 Dec 2012)
@@ -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.
Modified: trunk/boost/locale/utf.hpp
==============================================================================
--- trunk/boost/locale/utf.hpp	(original)
+++ trunk/boost/locale/utf.hpp	2012-12-21 09:33:09 EST (Fri, 21 Dec 2012)
@@ -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;
 
Modified: trunk/boost/locale/util.hpp
==============================================================================
--- trunk/boost/locale/util.hpp	(original)
+++ trunk/boost/locale/util.hpp	2012-12-21 09:33:09 EST (Fri, 21 Dec 2012)
@@ -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.
         ///