Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r60576 - in sandbox-branches/birbacher/fix_documentation/libs/spirit/doc: html/spirit/qi/reference html/spirit/qi/tutorials qi
From: frank.birbacher_at_[hidden]
Date: 2010-03-14 04:05:20


Author: birbacher
Date: 2010-03-14 04:05:19 EDT (Sun, 14 Mar 2010)
New Revision: 60576
URL: http://svn.boost.org/trac/boost/changeset/60576

Log:
Spirit: fixed some typos in documentation
Text files modified:
   sandbox-branches/birbacher/fix_documentation/libs/spirit/doc/html/spirit/qi/reference/auto.html | 4 ++--
   sandbox-branches/birbacher/fix_documentation/libs/spirit/doc/html/spirit/qi/tutorials/employee___parsing_into_structs.html | 2 +-
   sandbox-branches/birbacher/fix_documentation/libs/spirit/doc/qi/auto.qbk | 2 +-
   sandbox-branches/birbacher/fix_documentation/libs/spirit/doc/qi/employee.qbk | 2 +-
   4 files changed, 5 insertions(+), 5 deletions(-)

Modified: sandbox-branches/birbacher/fix_documentation/libs/spirit/doc/html/spirit/qi/reference/auto.html
==============================================================================
--- sandbox-branches/birbacher/fix_documentation/libs/spirit/doc/html/spirit/qi/reference/auto.html (original)
+++ sandbox-branches/birbacher/fix_documentation/libs/spirit/doc/html/spirit/qi/reference/auto.html 2010-03-14 04:05:19 EDT (Sun, 14 Mar 2010)
@@ -289,8 +289,8 @@
 </table></div>
 <p>
           It is possible to add support for any custom data type by implementing
- a specialization of the customization point <a class="link" href="../../advanced/customize/auto/create_parser.html" title="Define a Custom Attribute Mapping for a Parser"><code class="computeroutput"><span class="identifier">create_parser</span></code></a>. This customiyation
- can be used also to redefined anz of the predefined mappings.
+ a specialization of the customization point <a class="link" href="../../advanced/customize/auto/create_parser.html" title="Define a Custom Attribute Mapping for a Parser"><code class="computeroutput"><span class="identifier">create_parser</span></code></a>. This customization
+ can be used also to redefined any of the predefined mappings.
         </p>
 <a name="spirit.qi.reference.auto.attributes"></a><h6>
 <a name="id668897"></a>

Modified: sandbox-branches/birbacher/fix_documentation/libs/spirit/doc/html/spirit/qi/tutorials/employee___parsing_into_structs.html
==============================================================================
--- sandbox-branches/birbacher/fix_documentation/libs/spirit/doc/html/spirit/qi/tutorials/employee___parsing_into_structs.html (original)
+++ sandbox-branches/birbacher/fix_documentation/libs/spirit/doc/html/spirit/qi/tutorials/employee___parsing_into_structs.html 2010-03-14 04:05:19 EDT (Sun, 14 Mar 2010)
@@ -338,7 +338,7 @@
 <p>
           is a simplified version of:
         </p>
-<pre class="programlisting"><span class="identifier">quoted_string</span> <span class="special">=</span> <span class="identifier">lexeme</span><span class="special">[</span><span class="char">'"'</span> <span class="special">&gt;&gt;</span> <span class="special">+(</span><span class="identifier">char_</span> <span class="special">-</span> <span class="char">'"'</span><span class="special">)</span> <span class="special">&gt;&gt;</span> <span class="char">'"'</span><span class="special">][</span><span class="identifier">val_</span> <span class="special">=</span> <span class="identifier">_1</span><span class="special">];</span>
+<pre class="programlisting"><span class="identifier">quoted_string</span> <span class="special">=</span> <span class="identifier">lexeme</span><span class="special">[</span><span class="char">'"'</span> <span class="special">&gt;&gt;</span> <span class="special">+(</span><span class="identifier">char_</span> <span class="special">-</span> <span class="char">'"'</span><span class="special">)</span> <span class="special">&gt;&gt;</span> <span class="char">'"'</span><span class="special">][</span><span class="identifier">_val</span> <span class="special">=</span> <span class="identifier">_1</span><span class="special">];</span>
 </pre>
 <p>
           The attribute of the <code class="computeroutput"><span class="identifier">quoted_string</span></code>

Modified: sandbox-branches/birbacher/fix_documentation/libs/spirit/doc/qi/auto.qbk
==============================================================================
--- sandbox-branches/birbacher/fix_documentation/libs/spirit/doc/qi/auto.qbk (original)
+++ sandbox-branches/birbacher/fix_documentation/libs/spirit/doc/qi/auto.qbk 2010-03-14 04:05:19 EDT (Sun, 14 Mar 2010)
@@ -72,7 +72,7 @@
 
 It is possible to add support for any custom data type by implementing a
 specialization of the customization point __customize_create_parser__. This
-customiyation can be used also to redefined anz of the predefined mappings.
+customization can be used also to redefined any of the predefined mappings.
 
 [heading Attributes]
 

Modified: sandbox-branches/birbacher/fix_documentation/libs/spirit/doc/qi/employee.qbk
==============================================================================
--- sandbox-branches/birbacher/fix_documentation/libs/spirit/doc/qi/employee.qbk (original)
+++ sandbox-branches/birbacher/fix_documentation/libs/spirit/doc/qi/employee.qbk 2010-03-14 04:05:19 EDT (Sun, 14 Mar 2010)
@@ -175,7 +175,7 @@
 
 is a simplified version of:
 
- quoted_string = lexeme['"' >> +(char_ - '"') >> '"'][val_ = _1];
+ quoted_string = lexeme['"' >> +(char_ - '"') >> '"'][_val = _1];
 
 The attribute of the `quoted_string` rule: `std::string` *is compatible* with
 the attribute of the RHS: `std::vector<char>`. The RHS extracts the parsed


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk