summaryrefslogtreecommitdiff
path: root/pygments/lexers
diff options
context:
space:
mode:
authorgbrandl <devnull@localhost>2006-12-16 09:12:00 +0100
committergbrandl <devnull@localhost>2006-12-16 09:12:00 +0100
commit0ef0ea74d32fd433fd4c19225f73116c80dfb56e (patch)
treef29540f08a174fbd5676b9f11181177b29b53734 /pygments/lexers
parent4acde39a9b1c9b11a02bea90923b5f6678eb6c26 (diff)
downloadpygments-0ef0ea74d32fd433fd4c19225f73116c80dfb56e.tar.gz
[svn] Add a few example files.
Diffstat (limited to 'pygments/lexers')
-rw-r--r--pygments/lexers/other.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pygments/lexers/other.py b/pygments/lexers/other.py
index 0c54327c..94d3c3b6 100644
--- a/pygments/lexers/other.py
+++ b/pygments/lexers/other.py
@@ -5,7 +5,7 @@
Lexers for other languages: SQL, BrainFuck.
- :copyright: 2006 by Georg Brandl, Tim Hatch <tim@timhatch.com>.
+ :copyright: 2006 by Georg Brandl, Tim Hatch <tim@timhatch.com>.
:license: BSD, see LICENSE for more details.
"""
@@ -202,4 +202,3 @@ class BashLexer(RegexLexer):
def analyse_text(text):
return shebang_matches(text, r'(ba|z|)sh')
-