Minor typo

This commit is contained in:
David Beazley 2016-09-07 19:20:11 -05:00
parent fe97ffc0fd
commit 9a1899fa69

View File

@ -251,7 +251,7 @@ To discard text, such as a comment, simply define a token rule that returns no v
# No return value. Token discarded # No return value. Token discarded
Alternatively, you can include the prefix ``ignore_`` in a token Alternatively, you can include the prefix ``ignore_`` in a token
declaration to force a token to be ignored. For example: declaration to force a token to be ignored. For example::
ignore_COMMENT = r'\#.*' ignore_COMMENT = r'\#.*'