$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r82594 - in trunk: boost/range boost/range/detail libs/range/test libs/range/test/adaptor_test libs/range/test/algorithm_ext_test
From: zeratul976_at_[hidden]
Date: 2013-01-24 04:10:52
Author: nathanridge
Date: 2013-01-24 04:10:47 EST (Thu, 24 Jan 2013)
New Revision: 82594
URL: http://svn.boost.org/trac/boost/changeset/82594
Log:
[range] fix some minor typos in comments - fixes #7916
Text files modified: 
   trunk/boost/range/detail/any_iterator.hpp               |     2 +-                                      
   trunk/boost/range/detail/collection_traits_detail.hpp   |     8 ++++----                                
   trunk/boost/range/empty.hpp                             |     2 +-                                      
   trunk/boost/range/irange.hpp                            |     2 +-                                      
   trunk/boost/range/iterator_range_io.hpp                 |     4 ++--                                    
   trunk/libs/range/test/adaptor_test/strided.cpp          |     2 +-                                      
   trunk/libs/range/test/adl_conformance.cpp               |     2 +-                                      
   trunk/libs/range/test/algorithm_example.cpp             |     4 ++--                                    
   trunk/libs/range/test/algorithm_ext_test/push_front.cpp |     2 +-                                      
   trunk/libs/range/test/array.cpp                         |     2 +-                                      
   trunk/libs/range/test/begin.cpp                         |     2 +-                                      
   trunk/libs/range/test/const_ranges.cpp                  |     2 +-                                      
   trunk/libs/range/test/end.cpp                           |     2 +-                                      
   trunk/libs/range/test/extension_mechanism.cpp           |     2 +-                                      
   trunk/libs/range/test/extension_size.cpp                |     2 +-                                      
   trunk/libs/range/test/iterator_pair.cpp                 |     2 +-                                      
   trunk/libs/range/test/iterator_range.cpp                |     4 ++--                                    
   trunk/libs/range/test/partial_workaround.cpp            |     2 +-                                      
   trunk/libs/range/test/reversible_range.cpp              |     2 +-                                      
   trunk/libs/range/test/std_container.cpp                 |     2 +-                                      
   trunk/libs/range/test/string.cpp                        |     2 +-                                      
   trunk/libs/range/test/sub_range.cpp                     |     2 +-                                      
   22 files changed, 28 insertions(+), 28 deletions(-)
Modified: trunk/boost/range/detail/any_iterator.hpp
==============================================================================
--- trunk/boost/range/detail/any_iterator.hpp	(original)
+++ trunk/boost/range/detail/any_iterator.hpp	2013-01-24 04:10:47 EST (Thu, 24 Jan 2013)
@@ -558,7 +558,7 @@
                 }
 
                 // If this is a non-null iterator then we need to put
-                // a clone of this iterators impementation into the other
+                // a clone of this iterators implementation into the other
                 // iterator.
                 // We can't just swap because of the small buffer optimization.
                 if (m_impl)
Modified: trunk/boost/range/detail/collection_traits_detail.hpp
==============================================================================
--- trunk/boost/range/detail/collection_traits_detail.hpp	(original)
+++ trunk/boost/range/detail/collection_traits_detail.hpp	2013-01-24 04:10:47 EST (Thu, 24 Jan 2013)
@@ -208,7 +208,7 @@
 
             // array traits ( no partial specialization )
             /*
-                without parial specialization we are able to
+                without partial specialization we are able to
                 provide support only for a limited number of
                 types. Currently the primitive numeric types 
                 are supported
@@ -324,14 +324,14 @@
 
 #endif // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
             
-            // array lenght resolving
+            // array length resolving
             /*
                 Lenght of string contained in a static array could
                 be different from the size of the array.
-                For string processing we need the lenght without
+                For string processing we need the length without
                 terminating 0.
 
-                Therefore, the lenght is calulated for char and wchar_t
+                Therefore, the length is calculated for char and wchar_t
                 using char_traits, rather then simply returning
                 the array size.
             */
Modified: trunk/boost/range/empty.hpp
==============================================================================
--- trunk/boost/range/empty.hpp	(original)
+++ trunk/boost/range/empty.hpp	2013-01-24 04:10:47 EST (Thu, 24 Jan 2013)
@@ -28,7 +28,7 @@
         return boost::begin( r ) == boost::end( r );
     }
 
-} // namepace 'boost'
+} // namespace 'boost'
 
 
 #endif
Modified: trunk/boost/range/irange.hpp
==============================================================================
--- trunk/boost/range/irange.hpp	(original)
+++ trunk/boost/range/irange.hpp	2013-01-24 04:10:47 EST (Thu, 24 Jan 2013)
@@ -100,7 +100,7 @@
         // While this design is less performant than some less
         // safe alternatives, the use of ranges and iterators to
         // perform counting will never be optimal anyhow, hence
-        // if optimal performance is desired a handcoded loop
+        // if optimal performance is desired a hand-coded loop
         // is the solution.
         template<typename Integer>
         class integer_iterator_with_step
Modified: trunk/boost/range/iterator_range_io.hpp
==============================================================================
--- trunk/boost/range/iterator_range_io.hpp	(original)
+++ trunk/boost/range/iterator_range_io.hpp	2013-01-24 04:10:47 EST (Thu, 24 Jan 2013)
@@ -48,7 +48,7 @@
 
         //! iterator_range output operator
         /*!
-            Output the range to an ostream. Elements are outputed
+            Output the range to an ostream. Elements are outputted
             in a sequence without separators.
         */
         template< typename IteratorT, typename Elem, typename Traits >
@@ -67,7 +67,7 @@
 
         //! iterator_range output operator
         /*!
-            Output the range to an ostream. Elements are outputed
+            Output the range to an ostream. Elements are outputted
             in a sequence without separators.
         */
         template< typename IteratorT >
Modified: trunk/libs/range/test/adaptor_test/strided.cpp
==============================================================================
--- trunk/libs/range/test/adaptor_test/strided.cpp	(original)
+++ trunk/libs/range/test/adaptor_test/strided.cpp	2013-01-24 04:10:47 EST (Thu, 24 Jan 2013)
@@ -9,7 +9,7 @@
 // For more information, see http://www.boost.org/libs/range/
 //
 // The strided_defect_Trac5014 test case is a modified version of a test case
-// contribued by Michel Morin as part of the trac ticket.
+// contributed by Michel Morin as part of the trac ticket.
 //
 #include <boost/range/adaptor/strided.hpp>
 
Modified: trunk/libs/range/test/adl_conformance.cpp
==============================================================================
--- trunk/libs/range/test/adl_conformance.cpp	(original)
+++ trunk/libs/range/test/adl_conformance.cpp	2013-01-24 04:10:47 EST (Thu, 24 Jan 2013)
@@ -11,7 +11,7 @@
 #include <boost/detail/workaround.hpp>
 
 #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
-#  pragma warn -8091 // supress warning in Boost.Test
+#  pragma warn -8091 // suppress warning in Boost.Test
 #  pragma warn -8057 // unused argument argc/argv in Boost.Test
 #endif
 
Modified: trunk/libs/range/test/algorithm_example.cpp
==============================================================================
--- trunk/libs/range/test/algorithm_example.cpp	(original)
+++ trunk/libs/range/test/algorithm_example.cpp	2013-01-24 04:10:47 EST (Thu, 24 Jan 2013)
@@ -11,7 +11,7 @@
 #include <boost/detail/workaround.hpp>
 
 #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
-#  pragma warn -8091 // supress warning in Boost.Test
+#  pragma warn -8091 // suppress warning in Boost.Test
 #  pragma warn -8057 // unused argument argc/argv in Boost.Test
 #endif
 
@@ -27,7 +27,7 @@
 namespace
 {
     //
-    // example: extrating bounds in a generic algorithm
+    // example: extracting bounds in a generic algorithm
     //
     template< typename Range, typename T >
     inline typename boost::range_iterator<Range>::type
Modified: trunk/libs/range/test/algorithm_ext_test/push_front.cpp
==============================================================================
--- trunk/libs/range/test/algorithm_ext_test/push_front.cpp	(original)
+++ trunk/libs/range/test/algorithm_ext_test/push_front.cpp	2013-01-24 04:10:47 EST (Thu, 24 Jan 2013)
@@ -43,7 +43,7 @@
         BOOST_CHECK_EQUAL_COLLECTIONS( reference.begin(), reference.end(),
             test.begin(), test.end() );
 
-        // copy the orignal reference sequence
+        // copy the original reference sequence
         Container reference_copy(reference);
         std::transform(reference.begin(), reference.end(), reference.begin(), DoubleValue());
 
Modified: trunk/libs/range/test/array.cpp
==============================================================================
--- trunk/libs/range/test/array.cpp	(original)
+++ trunk/libs/range/test/array.cpp	2013-01-24 04:10:47 EST (Thu, 24 Jan 2013)
@@ -12,7 +12,7 @@
 #include <boost/detail/workaround.hpp>
 
 #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
-#  pragma warn -8091 // supress warning in Boost.Test
+#  pragma warn -8091 // suppress warning in Boost.Test
 #  pragma warn -8057 // unused argument argc/argv in Boost.Test
 #endif
 
Modified: trunk/libs/range/test/begin.cpp
==============================================================================
--- trunk/libs/range/test/begin.cpp	(original)
+++ trunk/libs/range/test/begin.cpp	2013-01-24 04:10:47 EST (Thu, 24 Jan 2013)
@@ -11,7 +11,7 @@
 #include <boost/detail/workaround.hpp>
 
 #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
-#  pragma warn -8091 // supress warning in Boost.Test
+#  pragma warn -8091 // suppress warning in Boost.Test
 #  pragma warn -8057 // unused argument argc/argv in Boost.Test
 #endif
 
Modified: trunk/libs/range/test/const_ranges.cpp
==============================================================================
--- trunk/libs/range/test/const_ranges.cpp	(original)
+++ trunk/libs/range/test/const_ranges.cpp	2013-01-24 04:10:47 EST (Thu, 24 Jan 2013)
@@ -12,7 +12,7 @@
 #include <boost/detail/workaround.hpp>
 
 #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
-#  pragma warn -8091 // supress warning in Boost.Test
+#  pragma warn -8091 // suppress warning in Boost.Test
 #  pragma warn -8057 // unused argument argc/argv in Boost.Test
 #endif
 
Modified: trunk/libs/range/test/end.cpp
==============================================================================
--- trunk/libs/range/test/end.cpp	(original)
+++ trunk/libs/range/test/end.cpp	2013-01-24 04:10:47 EST (Thu, 24 Jan 2013)
@@ -11,7 +11,7 @@
 #include <boost/detail/workaround.hpp>
 
 #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
-#  pragma warn -8091 // supress warning in Boost.Test
+#  pragma warn -8091 // suppress warning in Boost.Test
 #  pragma warn -8057 // unused argument argc/argv in Boost.Test
 #endif
 
Modified: trunk/libs/range/test/extension_mechanism.cpp
==============================================================================
--- trunk/libs/range/test/extension_mechanism.cpp	(original)
+++ trunk/libs/range/test/extension_mechanism.cpp	2013-01-24 04:10:47 EST (Thu, 24 Jan 2013)
@@ -12,7 +12,7 @@
 #include <boost/detail/workaround.hpp>
 
 #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
-#  pragma warn -8091 // supress warning in Boost.Test
+#  pragma warn -8091 // suppress warning in Boost.Test
 #  pragma warn -8057 // unused argument argc/argv in Boost.Test
 #endif
 
Modified: trunk/libs/range/test/extension_size.cpp
==============================================================================
--- trunk/libs/range/test/extension_size.cpp	(original)
+++ trunk/libs/range/test/extension_size.cpp	2013-01-24 04:10:47 EST (Thu, 24 Jan 2013)
@@ -12,7 +12,7 @@
 #include <boost/detail/workaround.hpp>
 
 #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
-#  pragma warn -8091 // supress warning in Boost.Test
+#  pragma warn -8091 // suppress warning in Boost.Test
 #  pragma warn -8057 // unused argument argc/argv in Boost.Test
 #endif
 
Modified: trunk/libs/range/test/iterator_pair.cpp
==============================================================================
--- trunk/libs/range/test/iterator_pair.cpp	(original)
+++ trunk/libs/range/test/iterator_pair.cpp	2013-01-24 04:10:47 EST (Thu, 24 Jan 2013)
@@ -11,7 +11,7 @@
 #include <boost/detail/workaround.hpp>
 
 #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
-#  pragma warn -8091 // supress warning in Boost.Test
+#  pragma warn -8091 // suppress warning in Boost.Test
 #  pragma warn -8057 // unused argument argc/argv in Boost.Test
 #endif
 
Modified: trunk/libs/range/test/iterator_range.cpp
==============================================================================
--- trunk/libs/range/test/iterator_range.cpp	(original)
+++ trunk/libs/range/test/iterator_range.cpp	2013-01-24 04:10:47 EST (Thu, 24 Jan 2013)
@@ -13,7 +13,7 @@
 #include <boost/detail/workaround.hpp>
 
 #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
-#  pragma warn -8091 // supress warning in Boost.Test
+#  pragma warn -8091 // suppress warning in Boost.Test
 #  pragma warn -8057 // unused argument argc/argv in Boost.Test
 #endif
 
@@ -235,7 +235,7 @@
 
 //
 //
-// Check that constness is propgated correct from
+// Check that constness is propagated correct from
 // the iterator types.
 //
 // Test contributed by Larry Evans.
Modified: trunk/libs/range/test/partial_workaround.cpp
==============================================================================
--- trunk/libs/range/test/partial_workaround.cpp	(original)
+++ trunk/libs/range/test/partial_workaround.cpp	2013-01-24 04:10:47 EST (Thu, 24 Jan 2013)
@@ -14,7 +14,7 @@
 #include <boost/test/test_tools.hpp>
 
 #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
-#  pragma warn -8091 // supress warning in Boost.Test
+#  pragma warn -8091 // suppress warning in Boost.Test
 #  pragma warn -8057 // unused argument argc/argv in Boost.Test
 #endif
 
Modified: trunk/libs/range/test/reversible_range.cpp
==============================================================================
--- trunk/libs/range/test/reversible_range.cpp	(original)
+++ trunk/libs/range/test/reversible_range.cpp	2013-01-24 04:10:47 EST (Thu, 24 Jan 2013)
@@ -12,7 +12,7 @@
 #include <boost/detail/workaround.hpp>
 
 #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
-#  pragma warn -8091 // supress warning in Boost.Test
+#  pragma warn -8091 // suppress warning in Boost.Test
 #  pragma warn -8057 // unused argument argc/argv in Boost.Test
 #endif
 
Modified: trunk/libs/range/test/std_container.cpp
==============================================================================
--- trunk/libs/range/test/std_container.cpp	(original)
+++ trunk/libs/range/test/std_container.cpp	2013-01-24 04:10:47 EST (Thu, 24 Jan 2013)
@@ -12,7 +12,7 @@
 #include <boost/detail/workaround.hpp>
 
 #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
-#  pragma warn -8091 // supress warning in Boost.Test
+#  pragma warn -8091 // suppress warning in Boost.Test
 #  pragma warn -8057 // unused argument argc/argv in Boost.Test
 #endif
 
Modified: trunk/libs/range/test/string.cpp
==============================================================================
--- trunk/libs/range/test/string.cpp	(original)
+++ trunk/libs/range/test/string.cpp	2013-01-24 04:10:47 EST (Thu, 24 Jan 2013)
@@ -13,7 +13,7 @@
 #include <boost/detail/workaround.hpp>
 
 #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
-#  pragma warn -8091 // supress warning in Boost.Test
+#  pragma warn -8091 // suppress warning in Boost.Test
 #  pragma warn -8057 // unused argument argc/argv in Boost.Test
 #endif
 
Modified: trunk/libs/range/test/sub_range.cpp
==============================================================================
--- trunk/libs/range/test/sub_range.cpp	(original)
+++ trunk/libs/range/test/sub_range.cpp	2013-01-24 04:10:47 EST (Thu, 24 Jan 2013)
@@ -12,7 +12,7 @@
 #include <boost/detail/workaround.hpp>
 
 #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
-#  pragma warn -8091 // supress warning in Boost.Test
+#  pragma warn -8091 // suppress warning in Boost.Test
 #  pragma warn -8057 // unused argument argc/argv in Boost.Test
 #endif