summaryrefslogtreecommitdiff
path: root/pygments
diff options
context:
space:
mode:
authorEricFromCanada <eric3knibbe@gmail.com>2014-11-14 09:51:30 -0500
committerEricFromCanada <eric3knibbe@gmail.com>2014-11-14 09:51:30 -0500
commitd92befa4604a46a99eac39b276ad14d161282de9 (patch)
tree019b162a2499164625732c2485e283422208b19c /pygments
parent20d09551620be3469e1ca7c02c8f3d18760f47a2 (diff)
downloadpygments-d92befa4604a46a99eac39b276ad14d161282de9.tar.gz
spelling/grammar/syntax fixes for docs
Diffstat (limited to 'pygments')
-rw-r--r--pygments/lexers/console.py2
-rw-r--r--pygments/lexers/dotnet.py4
-rw-r--r--pygments/lexers/javascript.py2
-rw-r--r--pygments/lexers/templates.py8
4 files changed, 8 insertions, 8 deletions
diff --git a/pygments/lexers/console.py b/pygments/lexers/console.py
index 56120582..c76ed648 100644
--- a/pygments/lexers/console.py
+++ b/pygments/lexers/console.py
@@ -18,7 +18,7 @@ __all__ = ['VCTreeStatusLexer', 'PyPyLogLexer']
class VCTreeStatusLexer(RegexLexer):
"""
- For colorizing output of version control status commans, like "hg
+ For colorizing output of version control status commands, like "hg
status" or "svn status".
.. versionadded:: 2.0
diff --git a/pygments/lexers/dotnet.py b/pygments/lexers/dotnet.py
index d24f64ea..afdb7786 100644
--- a/pygments/lexers/dotnet.py
+++ b/pygments/lexers/dotnet.py
@@ -497,7 +497,7 @@ class GenericAspxLexer(RegexLexer):
# TODO support multiple languages within the same source file
class CSharpAspxLexer(DelegatingLexer):
"""
- Lexer for highligting C# within ASP.NET pages.
+ Lexer for highlighting C# within ASP.NET pages.
"""
name = 'aspx-cs'
@@ -518,7 +518,7 @@ class CSharpAspxLexer(DelegatingLexer):
class VbNetAspxLexer(DelegatingLexer):
"""
- Lexer for highligting Visual Basic.net within ASP.NET pages.
+ Lexer for highlighting Visual Basic.net within ASP.NET pages.
"""
name = 'aspx-vb'
diff --git a/pygments/lexers/javascript.py b/pygments/lexers/javascript.py
index 404bcf96..8e258f9a 100644
--- a/pygments/lexers/javascript.py
+++ b/pygments/lexers/javascript.py
@@ -213,7 +213,7 @@ class LiveScriptLexer(RegexLexer):
.. _LiveScript: http://gkz.github.com/LiveScript/
- New in Pygments 1.6.
+ .. versionadded:: 1.6
"""
name = 'LiveScript'
diff --git a/pygments/lexers/templates.py b/pygments/lexers/templates.py
index c153f513..b106523d 100644
--- a/pygments/lexers/templates.py
+++ b/pygments/lexers/templates.py
@@ -1122,7 +1122,7 @@ class HtmlPhpLexer(DelegatingLexer):
class XmlPhpLexer(DelegatingLexer):
"""
- Subclass of `PhpLexer` that higlights unhandled data with the `XmlLexer`.
+ Subclass of `PhpLexer` that highlights unhandled data with the `XmlLexer`.
"""
name = 'XML+PHP'
@@ -1180,7 +1180,7 @@ class JavascriptPhpLexer(DelegatingLexer):
class HtmlSmartyLexer(DelegatingLexer):
"""
- Subclass of the `SmartyLexer` that highighlights unlexed data with the
+ Subclass of the `SmartyLexer` that highlights unlexed data with the
`HtmlLexer`.
Nested Javascript and CSS is highlighted too.
@@ -1263,7 +1263,7 @@ class JavascriptSmartyLexer(DelegatingLexer):
class HtmlDjangoLexer(DelegatingLexer):
"""
- Subclass of the `DjangoLexer` that highighlights unlexed data with the
+ Subclass of the `DjangoLexer` that highlights unlexed data with the
`HtmlLexer`.
Nested Javascript and CSS is highlighted too.
@@ -1851,7 +1851,7 @@ class HandlebarsHtmlLexer(DelegatingLexer):
class YamlJinjaLexer(DelegatingLexer):
"""
- Subclass of the `DjangoLexer` that highighlights unlexed data with the
+ Subclass of the `DjangoLexer` that highlights unlexed data with the
`YamlLexer`.
Commonly used in Saltstack salt states.