diff options
author | Andy <andy@onthewings.net> | 2012-11-09 19:59:51 +0800 |
---|---|---|
committer | Andy <andy@onthewings.net> | 2012-11-09 19:59:51 +0800 |
commit | bb32ac3f7fd64fd3efbb271558d613cef09e7854 (patch) | |
tree | 8ec27a8a63645e96fa630c879a6c7312ce39ee7c /pygments/lexers/web.py | |
parent | bc1fea9cf1220e27625e0ec33c8ef9d81e8987dc (diff) | |
download | pygments-bb32ac3f7fd64fd3efbb271558d613cef09e7854.tar.gz |
Renamed haXe to Haxe, according to https://groups.google.com/forum/#!topic/haxelang/O7PB-ZrX4i4/discussion
Diffstat (limited to 'pygments/lexers/web.py')
-rw-r--r-- | pygments/lexers/web.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pygments/lexers/web.py b/pygments/lexers/web.py index 79245d34..f0ef1ca7 100644 --- a/pygments/lexers/web.py +++ b/pygments/lexers/web.py @@ -1126,13 +1126,13 @@ class MxmlLexer(RegexLexer): class HaxeLexer(RegexLexer): """ - For haXe source code (http://haxe.org/). + For Haxe source code (http://haxe.org/). *New in Pygments 1.3.* """ - name = 'haXe' - aliases = ['hx', 'haXe'] + name = 'Haxe' + aliases = ['hx', 'Haxe'] filenames = ['*.hx'] mimetypes = ['text/haxe'] |