summaryrefslogtreecommitdiff
path: root/pygments/lexers/functional.py
diff options
context:
space:
mode:
authorAlexei Sholik <alcosholik@gmail.com>2014-06-07 00:36:37 +0300
committerAlexei Sholik <alcosholik@gmail.com>2014-06-07 00:36:37 +0300
commit712d327c39efd6109d6919657e21ae5cd1a15414 (patch)
treee5828db699e045be8924819f20fd6bc6d83c5cc5 /pygments/lexers/functional.py
parent1eab0e634018f922599e76a636719995fefd48cf (diff)
downloadpygments-712d327c39efd6109d6919657e21ae5cd1a15414.tar.gz
A few fix-ups for the updated ElixirLexer files
Diffstat (limited to 'pygments/lexers/functional.py')
-rw-r--r--pygments/lexers/functional.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/functional.py b/pygments/lexers/functional.py
index 000be337..f4342d3c 100644
--- a/pygments/lexers/functional.py
+++ b/pygments/lexers/functional.py
@@ -3218,7 +3218,7 @@ class ElixirLexer(RegexLexer):
# these are also valid sigil terminators, they are not balanced
terms = [
- (r'\/', 'slas'), (r'\|', 'pipe'), ('"', 'quot'), ("'", 'apos'),
+ (r'/', 'slas'), (r'\|', 'pipe'), ('"', 'quot'), ("'", 'apos'),
]
# heredocs have slightly different rules, they are not balanced