]> granicus.if.org Git - flex/commitdiff
Documentation patch.
authorJohn Millaway <john43@users.sourceforge.net>
Tue, 14 Feb 2006 05:12:34 +0000 (05:12 +0000)
committerJohn Millaway <john43@users.sourceforge.net>
Tue, 14 Feb 2006 05:12:34 +0000 (05:12 +0000)
doc/flex.texi

index ed53def95ead1b1cea8dd342f12a45d2209456cf..9346113cf5aeadf6e1b21b2601aaa4b1a1c7160e 100644 (file)
@@ -3869,7 +3869,7 @@ Here is an example of a simple C++ scanner:
 If you want to create multiple (different) lexer classes, you use the
 @samp{-P} flag (or the @code{prefix=} option) to rename each
 @code{yyFlexLexer} to some other @samp{xxFlexLexer}.  You then can
-include @file{FlexLexer.h>} in your other sources once per lexer class,
+include @file{<FlexLexer.h>} in your other sources once per lexer class,
 first renaming @code{yyFlexLexer} as follows:
 
 @cindex include files, with C++
@@ -3879,11 +3879,11 @@ first renaming @code{yyFlexLexer} as follows:
 @verbatim
     #undef yyFlexLexer
     #define yyFlexLexer xxFlexLexer
-    #include <FflexLexer.h>
+    #include <FlexLexer.h>
 
     #undef yyFlexLexer
     #define yyFlexLexer zzFlexLexer
-    #include FlexLexer.h>
+    #include <FlexLexer.h>
 @end verbatim
 @end example