From cd9014eda2c446dbadd370485075a700da92c24c Mon Sep 17 00:00:00 2001 From: David Beazley Date: Fri, 25 Mar 2022 15:49:11 -0500 Subject: [PATCH] Fixed issue #94 --- docs/sly.rst | 6 ------ 1 file changed, 6 deletions(-) diff --git a/docs/sly.rst b/docs/sly.rst index 5382c7d..25bd382 100644 --- a/docs/sly.rst +++ b/docs/sly.rst @@ -138,12 +138,6 @@ names of the tokens provided in the ``tokens`` set. For example:: PLUS = r'\+' MINUS = r'-' -Regular expression patterns are compiled using the ``re.VERBOSE`` flag -which can be used to help readability. However, -unescaped whitespace is ignored and comments are allowed in this mode. -If your pattern involves whitespace, make sure you use ``\s``. If you -need to match the ``#`` character, use ``[#]`` or ``\#``. - Tokens are matched in the same order that patterns are listed in the ``Lexer`` class. Longer tokens always need to be specified before short tokens. For example, if you wanted to have separate tokens for