summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Siwek <jsiwek@corelight.com>2019-11-24 10:40:18 -0800
committerGeorg Brandl <georg@python.org>2019-11-25 20:39:24 +0100
commit22c9099ca0c5bac35aa49e8eb509acf3125bf395 (patch)
tree764a2a8df506121d7a0ad3e03045e6e711fae640
parent71835d83fbfe004608609b4d2ae29aa8ddf31359 (diff)
downloadpygments-git-22c9099ca0c5bac35aa49e8eb509acf3125bf395.tar.gz
Fix typo in ZeekLexer comment
-rw-r--r--pygments/lexers/dsls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/dsls.py b/pygments/lexers/dsls.py
index 23fc9a97..a0e18274 100644
--- a/pygments/lexers/dsls.py
+++ b/pygments/lexers/dsls.py
@@ -314,7 +314,7 @@ class ZeekLexer(RegexLexer):
(r'([-+=&|]{2}|[+=!><-]=)', Operator),
(r'\b(in|as|is|of)\b', Operator.Word),
(r'\??\$', Operator),
- # Technically, colons are often used for punctuation/sepration.
+ # Technically, colons are often used for punctuation/separation.
# E.g. field name/type separation.
(r'[?:]', Operator),
],