$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: nesotto_at_[hidden]
Date: 2008-01-12 07:38:46
Author: nesotto
Date: 2008-01-12 07:38:46 EST (Sat, 12 Jan 2008)
New Revision: 42692
URL: http://svn.boost.org/trac/boost/changeset/42692
Log:
doc fixes
Text files modified: 
   branches/release/libs/range/doc/boost_range.html   |     2 +-                                      
   branches/release/libs/range/doc/history_ack.html   |     8 ++++----                                
   branches/release/libs/range/doc/intro.html         |     3 +--                                     
   branches/release/libs/range/doc/portability.html   |     2 +-                                      
   branches/release/libs/range/doc/utility_class.html |     9 +++++----                               
   5 files changed, 12 insertions(+), 12 deletions(-)
Modified: branches/release/libs/range/doc/boost_range.html
==============================================================================
--- branches/release/libs/range/doc/boost_range.html	(original)
+++ branches/release/libs/range/doc/boost_range.html	2008-01-12 07:38:46 EST (Sat, 12 Jan 2008)
@@ -493,7 +493,7 @@
         </p>
             <p>
                 <code>as_literal()</code> can be used <i>internally</i> in string 
-                algorithm librararies to such that arrays of characters are 
+                algorithm librararies such that arrays of characters are 
                 handled correctly.
                 </p>
             <p>
Modified: branches/release/libs/range/doc/history_ack.html
==============================================================================
--- branches/release/libs/range/doc/history_ack.html	(original)
+++ branches/release/libs/range/doc/history_ack.html	2008-01-12 07:38:46 EST (Sat, 12 Jan 2008)
@@ -18,10 +18,10 @@
 
     <h2  >History and Acknowledgement</h2><a name="History" ></a>
     <p  >
-    The library have been under way for a long time. Dietmar Kühl originally 
-    intended to submit an <code  >array_traits</code> class template which 
-    had most of the functionality present now, but only for arrays and standard 
-    containers. 
+    The library was under way for a long time. Dietmar Kühl originally intended
+    to submit an <code>array_traits</code> class template which had most of
+    the functionality present now, but only for arrays and standard containers.
+    I believe this was back in 2001 or 2002.
     </p>
     
     <p>
Modified: branches/release/libs/range/doc/intro.html
==============================================================================
--- branches/release/libs/range/doc/intro.html	(original)
+++ branches/release/libs/range/doc/intro.html	2008-01-12 07:38:46 EST (Sat, 12 Jan 2008)
@@ -63,8 +63,7 @@
 
     </ul>
     </p>
-    <p  >
-    Below are given a small example (the complete example can be found <a 
+    <p  > Below is given a small example (the complete example can be found <a
     href="../test/algorithm_example.cpp" target="_self" >here</a>): <blockquote>
         <pre  >
 <span class=comment>
Modified: branches/release/libs/range/doc/portability.html
==============================================================================
--- branches/release/libs/range/doc/portability.html	(original)
+++ branches/release/libs/range/doc/portability.html	2008-01-12 07:38:46 EST (Sat, 12 Jan 2008)
@@ -35,7 +35,7 @@
     </p>
     <p  >
     Notice also that some compilers cannot do function template ordering properly. 
-    In that case one must rely of <a
+    In that case one must rely on <a
       href="boost_range.html#range_iterator"><code >range_iterator</code></a> 
       and a single function definition instead of overloaded versions for const and 
       non-const arguments.
Modified: branches/release/libs/range/doc/utility_class.html
==============================================================================
--- branches/release/libs/range/doc/utility_class.html	(original)
+++ branches/release/libs/range/doc/utility_class.html	2008-01-12 07:38:46 EST (Sat, 12 Jan 2008)
@@ -33,11 +33,12 @@
     </ul>
     </ul>
 
-    The <code>iterator_range</code> class is templated on an 
-    <a href="../../iterator/doc/new-iter-concepts.html#forward-traversal-iterators-lib-forward-traversal-iterators">Forward 
+    The <code>iterator_range</code> class is templated on a <a
+    href="../../iterator/doc/new-iter-concepts.html#forward-traversal-iterators-lib-forward-traversal-iterators">Forward 
     Traversal Iterator</a> and should be used whenever fairly general code is needed. 
-    The <code>sub_range</code> class is templated on an <a href="range.html#forward_range">Forward
-    Range</a> and it is less general, but a bit easier to use since its template 
+    The <code>sub_range</code> class is templated on a <a 
+    href="range.html#forward_range">Forward Range</a> and it is less general, 
+    but a bit easier to use since its template 
     argument is easier to specify. The biggest difference is, however, that a 
     <code>sub_range</code> can propagate constness because it knows what a 
 corresponding <code>const_iterator</code> is. </p>