summaryrefslogtreecommitdiff
path: root/markdown/extensions/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'markdown/extensions/__init__.py')
-rw-r--r--markdown/extensions/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/markdown/extensions/__init__.py b/markdown/extensions/__init__.py
index 4bc8e5f..18ceee6 100644
--- a/markdown/extensions/__init__.py
+++ b/markdown/extensions/__init__.py
@@ -26,7 +26,7 @@ from ..util import parseBoolValue
class Extension:
""" Base class for extensions to subclass. """
- # Default config -- to be overriden by a subclass
+ # Default config -- to be overridden by a subclass
# Must be of the following format:
# {
# 'key': ['value', 'description']
@@ -90,9 +90,9 @@ class Extension:
def extendMarkdown(self, md):
"""
- Add the various proccesors and patterns to the Markdown Instance.
+ Add the various proccessors and patterns to the Markdown Instance.
- This method must be overriden by every extension.
+ This method must be overridden by every extension.
Keyword arguments: