summaryrefslogtreecommitdiff
path: root/doc/flex.texi
diff options
context:
space:
mode:
authorJohn Millaway <john43@users.sourceforge.net>2006-02-14 05:12:34 +0000
committerJohn Millaway <john43@users.sourceforge.net>2006-02-14 05:12:34 +0000
commite3788af7558aae54af6c07ad56680254903ec011 (patch)
tree07204e43cc0bb9fcee3e14b5b35f1eabb83418f0 /doc/flex.texi
parentd5b8d4db354f0b8f19091aa960a911fdf55bc3b0 (diff)
Documentation patch.
Diffstat (limited to 'doc/flex.texi')
-rw-r--r--doc/flex.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/flex.texi b/doc/flex.texi
index ed53def..9346113 100644
--- a/doc/flex.texi
+++ b/doc/flex.texi
@@ -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