diff options
Diffstat (limited to 'pygments/lexers/pascal.py')
-rw-r--r-- | pygments/lexers/pascal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/pascal.py b/pygments/lexers/pascal.py index 0d1ac3fd..1b2d2a95 100644 --- a/pygments/lexers/pascal.py +++ b/pygments/lexers/pascal.py @@ -363,7 +363,7 @@ class DelphiLexer(Lexer): elif lowercase_name in self.keywords: token = Keyword # if we are in a special block and a - # block ending keyword occours (and the parenthesis + # block ending keyword occurs (and the parenthesis # is balanced) we end the current block context if (in_function_block or in_property_block) and \ lowercase_name in self.BLOCK_KEYWORDS and \ |