summaryrefslogtreecommitdiff
path: root/pygments/lexers/agile.py
diff options
context:
space:
mode:
authorgbrandl <devnull@localhost>2006-12-10 11:31:03 +0100
committergbrandl <devnull@localhost>2006-12-10 11:31:03 +0100
commit74d7585b086181a8cd62205938970b80fe7aa4df (patch)
treee38c10178f674fbe35d82d3630c898a118408329 /pygments/lexers/agile.py
parent0a767b5548b7e0800196ad1beba56e34bcc4d6a8 (diff)
downloadpygments-74d7585b086181a8cd62205938970b80fe7aa4df.tar.gz
[svn] Change Pygments license to BSD.
Diffstat (limited to 'pygments/lexers/agile.py')
-rw-r--r--pygments/lexers/agile.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pygments/lexers/agile.py b/pygments/lexers/agile.py
index af3aef1d..5e074731 100644
--- a/pygments/lexers/agile.py
+++ b/pygments/lexers/agile.py
@@ -7,7 +7,7 @@
:copyright: 2006 by Georg Brandl, Armin Ronacher,
Lukas Meuser, Marek Kubica.
- :license: GNU LGPL, see LICENSE for more details.
+ :license: BSD, see LICENSE for more details.
"""
import re
@@ -906,7 +906,7 @@ class SchemeLexer(RegexLexer):
# find the remaining variables
(valid_name, Name.Variable),
- # the famous parantheses!
+ # the famous parentheses!
(r'(\(|\))', Punctuation),
],
}