summaryrefslogtreecommitdiff
path: root/pygments/lexers/praat.py
diff options
context:
space:
mode:
Diffstat (limited to 'pygments/lexers/praat.py')
-rw-r--r--pygments/lexers/praat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/praat.py b/pygments/lexers/praat.py
index 8fbae8c5..c76ea306 100644
--- a/pygments/lexers/praat.py
+++ b/pygments/lexers/praat.py
@@ -287,7 +287,7 @@ class PraatLexer(RegexLexer):
(r'(boolean)(\s+\S+\s*)(0|1|"?(?:yes|no)"?)',
bygroups(Keyword, Text, Name.Variable)),
- # Ideally processing of the number would happend in the 'number'
+ # Ideally processing of the number would happen in the 'number'
# but that doesn't seem to work
(r'(real|natural|positive|integer)([ \t]+\S+[ \t]*)([+-]?)(\d+(?:\.\d*)?'
r'(?:[eE][-+]?\d+)?%?)',