summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Hatch <tim@timhatch.com>2014-10-10 07:27:39 -0700
committerTim Hatch <tim@timhatch.com>2014-10-10 07:27:39 -0700
commit1cbd15aeb7818e0d905e5794199e7a8dbd14cb27 (patch)
tree501faa9ca1bb87b56eaa22305f7e1af35ad2f13c
parentceee3a3ad356dc8ab0dce1a67441a2d10b7738be (diff)
downloadpygments-1cbd15aeb7818e0d905e5794199e7a8dbd14cb27.tar.gz
Include 'unlexer' as a common misspelling.
-rw-r--r--pygments/lexers/templates.py24
-rwxr-xr-xscripts/check_sources.py2
2 files changed, 13 insertions, 13 deletions
diff --git a/pygments/lexers/templates.py b/pygments/lexers/templates.py
index 029a7164..42f0cbdd 100644
--- a/pygments/lexers/templates.py
+++ b/pygments/lexers/templates.py
@@ -280,7 +280,7 @@ class VelocityLexer(RegexLexer):
class VelocityHtmlLexer(DelegatingLexer):
"""
- Subclass of the `VelocityLexer` that highlights unlexer data
+ Subclass of the `VelocityLexer` that highlights unlexed data
with the `HtmlLexer`.
"""
@@ -297,7 +297,7 @@ class VelocityHtmlLexer(DelegatingLexer):
class VelocityXmlLexer(DelegatingLexer):
"""
- Subclass of the `VelocityLexer` that highlights unlexer data
+ Subclass of the `VelocityLexer` that highlights unlexed data
with the `XmlLexer`.
"""
@@ -451,7 +451,7 @@ class MyghtyLexer(RegexLexer):
class MyghtyHtmlLexer(DelegatingLexer):
"""
- Subclass of the `MyghtyLexer` that highlights unlexer data
+ Subclass of the `MyghtyLexer` that highlights unlexed data
with the `HtmlLexer`.
.. versionadded:: 0.6
@@ -468,7 +468,7 @@ class MyghtyHtmlLexer(DelegatingLexer):
class MyghtyXmlLexer(DelegatingLexer):
"""
- Subclass of the `MyghtyLexer` that highlights unlexer data
+ Subclass of the `MyghtyLexer` that highlights unlexed data
with the `XmlLexer`.
.. versionadded:: 0.6
@@ -485,7 +485,7 @@ class MyghtyXmlLexer(DelegatingLexer):
class MyghtyJavascriptLexer(DelegatingLexer):
"""
- Subclass of the `MyghtyLexer` that highlights unlexer data
+ Subclass of the `MyghtyLexer` that highlights unlexed data
with the `JavascriptLexer`.
.. versionadded:: 0.6
@@ -504,7 +504,7 @@ class MyghtyJavascriptLexer(DelegatingLexer):
class MyghtyCssLexer(DelegatingLexer):
"""
- Subclass of the `MyghtyLexer` that highlights unlexer data
+ Subclass of the `MyghtyLexer` that highlights unlexed data
with the `CssLexer`.
.. versionadded:: 0.6
@@ -661,7 +661,7 @@ class MakoHtmlLexer(DelegatingLexer):
class MakoXmlLexer(DelegatingLexer):
"""
- Subclass of the `MakoLexer` that highlights unlexer data
+ Subclass of the `MakoLexer` that highlights unlexed data
with the `XmlLexer`.
.. versionadded:: 0.7
@@ -678,7 +678,7 @@ class MakoXmlLexer(DelegatingLexer):
class MakoJavascriptLexer(DelegatingLexer):
"""
- Subclass of the `MakoLexer` that highlights unlexer data
+ Subclass of the `MakoLexer` that highlights unlexed data
with the `JavascriptLexer`.
.. versionadded:: 0.7
@@ -697,7 +697,7 @@ class MakoJavascriptLexer(DelegatingLexer):
class MakoCssLexer(DelegatingLexer):
"""
- Subclass of the `MakoLexer` that highlights unlexer data
+ Subclass of the `MakoLexer` that highlights unlexed data
with the `CssLexer`.
.. versionadded:: 0.7
@@ -773,7 +773,7 @@ class CheetahLexer(RegexLexer):
class CheetahHtmlLexer(DelegatingLexer):
"""
- Subclass of the `CheetahLexer` that highlights unlexer data
+ Subclass of the `CheetahLexer` that highlights unlexed data
with the `HtmlLexer`.
"""
@@ -788,7 +788,7 @@ class CheetahHtmlLexer(DelegatingLexer):
class CheetahXmlLexer(DelegatingLexer):
"""
- Subclass of the `CheetahLexer` that highlights unlexer data
+ Subclass of the `CheetahLexer` that highlights unlexed data
with the `XmlLexer`.
"""
@@ -803,7 +803,7 @@ class CheetahXmlLexer(DelegatingLexer):
class CheetahJavascriptLexer(DelegatingLexer):
"""
- Subclass of the `CheetahLexer` that highlights unlexer data
+ Subclass of the `CheetahLexer` that highlights unlexed data
with the `JavascriptLexer`.
"""
diff --git a/scripts/check_sources.py b/scripts/check_sources.py
index 5f233887..8e518cd4 100755
--- a/scripts/check_sources.py
+++ b/scripts/check_sources.py
@@ -43,7 +43,7 @@ copyright_2_re = re.compile(r'^ %s(, %s)*[,.]$' %
is_const_re = re.compile(r'if.*?==\s+(None|False|True)\b')
misspellings = ["developement", "adress", "verificate", # ALLOW-MISSPELLING
- "informations"] # ALLOW-MISSPELLING
+ "informations", "unlexer"] # ALLOW-MISSPELLING
@checker('.py')