Index: libs/spirit/doc/qi/roman.qbk =================================================================== --- libs/spirit/doc/qi/roman.qbk (revision 74243) +++ libs/spirit/doc/qi/roman.qbk (working copy) @@ -148,7 +148,7 @@ * `eps` is a special spirit parser that consumes no input but is always successful. We use it to initialize `_val`, the rule's synthesized attribute, to zero before anything else. The actual parser starts at - `+char_('M')`, parsing roman thousands. Using `eps` this way is good + `+lit_('M')`, parsing roman thousands. Using `eps` this way is good for doing pre and post initializations. * The expression `a || b` reads: match a or b and in sequence. That is, if both