diff --git a/doc/class_ref_ctxpolicy_depr.html b/doc/class_ref_ctxpolicy_depr.html index 0c9a5ac..e8df187 100644 --- a/doc/class_ref_ctxpolicy_depr.html +++ b/doc/class_ref_ctxpolicy_depr.html @@ -92,7 +92,7 @@ Time Configuration section. By default the new interface is used starting Bo void returning_from_include_file(); - // interpretation of #pragma's of the form + // interpretation of #pragmas of the form // 'wave option[(value)]' template <typename ContextT, typename ContainerT> bool interpret_pragma(ContextT const &ctx, ContainerT &pending, @@ -264,7 +264,7 @@ Time Configuration section. By default the new interface is used starting Bo

The function returning_from_include_file is called whenever an included file is about to be closed after it's processing is complete.

-

Interpretation of #pragma's

+

Interpretation of #pragmas

interpret_pragma

    template <typename ContextT, typename ContainerT>
     bool interpret_pragma(ContextT const &ctx, ContainerT &pending, 
diff --git a/doc/class_reference_context.html b/doc/class_reference_context.html
index 2190560..28d6e1b 100644
--- a/doc/class_reference_context.html
+++ b/doc/class_reference_context.html
@@ -118,7 +118,7 @@
   
     
       Public
-        typedef's defined by the boost::wave::context class 
+        typedefs defined by the boost::wave::context class 
     
     
       iterator_type
@@ -185,7 +185,7 @@
 

Initializes and returns the starting iterator for the preprocessed token stream. The iterator pair given by the parameters  [first, last) specifies the input sequence to preprocess. The first version of this - function uses the iinput stream as specified by the constructor. 

+ function uses the input stream as specified by the constructor. 

end

    iterator_type end() const;
@@ -249,7 +249,7 @@
    size_t get_iteration_depth() const;

Returns the actual include iteration depth, i.e. the current - number of include levels to be poped from the include iteration + number of include levels to be popped from the include iteration context, before the main (topmost) iteration context is reached.

Maintain defined macros

@@ -392,7 +392,7 @@
  • If the support_option_insert_whitespace flag is set, the Wave library  inserts additional whitespace between tokens where the concatenated string representation of the two tokens would form another valid C++ token. - This is very importatnt to avoid mis-interpretations of the generated + This is very important to avoid mis-interpretations of the generated output if it is going to be processed by a C++ compiler afterwards.  
  • If the support_option_preserve_comments flag is set, the Wave library preserves almost @@ -406,7 +406,7 @@
  • If the support_option_convert_trigraphs flag is set, the Wave library replaces all occurrences of trigraph characters with their non-trigraph character sequence (i.e. '??=' is replaced by '#' etc.) . By default no replacement is performed.
  • -
  • If the support_option_single_line flag is set, the Wave library will now reprot an +
  • If the support_option_single_line flag is set, the Wave library will now report an error if the last line of the processed input is not terminated by a new line. This flag is merely used for internal purposes by the testing framework and will be rarely used by a user of the library.
  • @@ -417,7 +417,7 @@ internal purposes and will be rarely reset by a user of the library.
  • If the support_option_emit_line_directives flag is set, the Wave library will emit #line directives in the generated token stream, if appropriate. This flag is set by default, to - prevent the library from generating #line directives it must be reset explicitely.
  • + prevent the library from generating #line directives it must be reset explicitly.
  • If the support_option_include_guard_detection flag is set, the Wave library will try to automatically identify include guards during the processing of a included file. Files which contained include guards are handled as if @@ -435,12 +435,12 @@ final #endif for the include guard to be recognized.

    This flag is on by default, so if you do not want the - library to automatically reconize include guards you will need to reset - this explicitely.

    + library to automatically recognize include guards you will need to reset + this explicitly.