summaryrefslogtreecommitdiff
path: root/pygments/lexers/scripting.py
diff options
context:
space:
mode:
authorKian-Meng Ang <kianmeng.ang@gmail.com>2022-01-19 04:00:07 +0800
committerGitHub <noreply@github.com>2022-01-18 21:00:07 +0100
commit2a0cecbb5037d04f1ecbf5f2336ef26813e2967c (patch)
treee6bcb5d33ebb82d76f8a4ebf4c54e493f69839d4 /pygments/lexers/scripting.py
parent2a640662cc0480e043b8d5a5b34586246255ac98 (diff)
downloadpygments-git-2a0cecbb5037d04f1ecbf5f2336ef26813e2967c.tar.gz
Fix typos (#2030)
Diffstat (limited to 'pygments/lexers/scripting.py')
-rw-r--r--pygments/lexers/scripting.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pygments/lexers/scripting.py b/pygments/lexers/scripting.py
index 9a1e63d6..ad089e5d 100644
--- a/pygments/lexers/scripting.py
+++ b/pygments/lexers/scripting.py
@@ -798,7 +798,7 @@ class RexxLexer(RegexLexer):
def analyse_text(text):
"""
- Check for inital comment and patterns that distinguish Rexx from other
+ Check for initial comment and patterns that distinguish Rexx from other
C-like languages.
"""
if re.search(r'/\*\**\s*rexx', text, re.IGNORECASE):
@@ -975,7 +975,7 @@ class EasytrieveLexer(RegexLexer):
# * apostrophe (')
# * period (.)
# * comma (,)
- # * paranthesis ( and )
+ # * parenthesis ( and )
# * colon (:)
#
# Additionally words end once a '*' appears, indicatins a comment.