summaryrefslogtreecommitdiff
path: root/pygments/lexers/functional.py
diff options
context:
space:
mode:
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