diff options
Diffstat (limited to 'pygments/lexers/html.py')
-rw-r--r-- | pygments/lexers/html.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/html.py b/pygments/lexers/html.py index 2e29f453..706cda39 100644 --- a/pygments/lexers/html.py +++ b/pygments/lexers/html.py @@ -285,7 +285,7 @@ class HamlLexer(ExtendedRegexLexer): flags = re.IGNORECASE # Haml can include " |\n" anywhere, # which is ignored and used to wrap long lines. - # To accomodate this, use this custom faux dot instead. + # To accommodate this, use this custom faux dot instead. _dot = r'(?: \|\n(?=.* \|)|.)' # In certain places, a comma at the end of the line |