summaryrefslogtreecommitdiff
path: root/markdown/postprocessors.py
diff options
context:
space:
mode:
Diffstat (limited to 'markdown/postprocessors.py')
-rw-r--r--markdown/postprocessors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/markdown/postprocessors.py b/markdown/postprocessors.py
index 498f7e8..0e89d40 100644
--- a/markdown/postprocessors.py
+++ b/markdown/postprocessors.py
@@ -103,7 +103,7 @@ class RawHtmlPostprocessor(Postprocessor):
m = self.BLOCK_LEVEL_REGEX.match(html)
if m:
if m.group(1)[0] in ('!', '?', '@', '%'):
- # Comment, php etc...
+ # Comment, PHP etc...
return True
return self.md.is_block_level(m.group(1))
return False