Update of /cvsroot/boost/boost/libs/wave/doc
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv31959

Modified Files:
      Tag: RC_1_34_0
        quickstart.html 
Log Message:
Fixed some typos and stylistic quirks.

Index: quickstart.html
===================================================================
RCS file: /cvsroot/boost/boost/libs/wave/doc/quickstart.html,v
retrieving revision 1.4
retrieving revision 1.4.2.1
diff -u -d -r1.4 -r1.4.2.1
--- quickstart.html     24 Dec 2005 19:50:43 -0000      1.4
+++ quickstart.html     27 Jul 2006 00:29:58 -0000      1.4.2.1
@@ -29,12 +29,12 @@
 options you can define:</p>
 <BLOCKQUOTE dir="ltr" style="MARGIN-RIGHT: 0px"> 
   <P><STRONG><IMG id="IMG1" height="13" src="theme/bullet.gif" 
width="13"></STRONG>&nbsp;include 
-    search paths, which define, where to search for files to be included with 
+    search paths defining where to search for files to be included with 
     <tt>#include&nbsp;&lt;...&gt;</tt> and <tt>#include&nbsp;"..."</tt> 
directives<br>
     <STRONG><img src="theme/bullet.gif" width="13" 
height="13">&nbsp;</STRONG>which 
     macros to predefine and which of the predefined macros to undefine<br>
     <STRONG><img src="theme/bullet.gif" width="13" 
height="13">&nbsp;</STRONG>whether to enable any of several extensions to the 
C++
-Standard (such as for variadics and placemarkers)<br>
+Standard (such as for variadics and placemarkers)
   </P>
 </BLOCKQUOTE>
 <p>You can access all these processing parameters through the 
<tt>boost::wave::context</tt> 
@@ -44,7 +44,7 @@
   the <tt>boost::wave::context</tt> object you have to supply at least two 
template parameters: 
   the iterator type of the underlying input stream to use and the type of the 
lexer iterator to be used as the token source for the preprocessing engine.</p>
 <P dir="ltr">Do not instantiate the main preprocessing iterators yourself.
-Get them from the wave::context object instead.<br>
+Get them from the wave::context object instead.
 The following code snippet is taken from the <tt>quick_start</tt> sample, 
which shows a minimal usage scenario for <tt>Wave</tt>. </P>
 <pre><span class="comment">    // The following preprocesses a given input 
file.
     // Open the file and read it into a string variable</span>
@@ -91,14 +91,14 @@
 <P dir="ltr">The constructor of the <tt>boost::wave::context</tt> object can 
   take a pair of arbitrary iterator types (at least <tt>input_iterator</tt> 
type 
   iterators) to the input stream, which must supply the data to be processed. 
-  The third parameter supplies a filename, filename, which is reported in the 
preprocessor output to
+  The third parameter supplies a filename, which is reported in the 
preprocessor output to
 indicate the current context. 
 Note though, that this filename is used 
   only as long as no <tt>#include</tt> or <tt>#line</tt> directives are 
encountered, 
-  which in turn will alter the current filename reported.</P>
-<P dir="ltr">The iteration over the preprocessed tokens is relativley 
straightforward. Just get the starting and the ending iterators from the 
context object 
+  which in turn will alter the current reported filename.</P>
+<P dir="ltr">The iteration over the preprocessed tokens is relatively 
straightforward. Just get the starting and the ending iterators from the 
context object 
   (maybe after initializing some include search paths) and you are done! 
Dereferencing 
-  the iterator will return the preprocessed tokens, which are generated on 
+  the iterator will return the preprocessed tokens generated on 
   the fly from the input stream. (To get further information about the token 
type, 
   you may want to look <a href="class_reference_tokentype.html">here</a>.)</P>
 <table border="0">
@@ -115,7 +115,7 @@
 <font size="2">Distributed under the Boost Software License, Version 1.0. (See 
accompanying file LICENSE_1_0.txt or copy at 
http://www.boost.org/LICENSE_1_0.txt) </font> </p>
 <span class="updated"></span>
 <p class="copyright"><span class="updated">Last updated: 
-  <!-- #BeginDate format:fcAm1m -->Sunday, May 15, 2005  12:23<!-- #EndDate -->
+  <!-- #BeginDate format:fcAm1m -->Wednesday, July 26, 2006  19:28<!-- 
#EndDate -->
 </span></p>
 </body>
 </html>


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to