Index: introduction.qbk =================================================================== --- introduction.qbk (revision 50372) +++ introduction.qbk (working copy) @@ -113,7 +113,7 @@ tools to generate the code, your lexer will be perfectly integrated with the rest of your program, making it possible to freely access any context information and data structure. Since the C++ compiler sees all the code it -will generate optimal code nomatter what configuration options have been chosen +will generate optimal code no matter what configuration options have been chosen by the user. __lex__ gives you the vast majority of features you could get from a similar __flex__ program without the need to leave C++ as a host language: @@ -137,7 +137,7 @@ [heading The Library Structure of __lex__] The [link spirit.lexerflow figure] below shows a high level overview of how the -__lex__ library might be used in an application. __lex__ allows to create +__lex__ library might be used in an application. __lex__ allows creation of lexical analyzers based on patterns. These patterns are regular expression based rules used to define the different tokens to be recognized in the character input sequence. The input sequence is expected to be provided to the