diff options
author | Amal Murali <amalmurali47@gmail.com> | 2018-05-07 15:55:23 +0530 |
---|---|---|
committer | Waylan Limberg <waylan.limberg@icloud.com> | 2018-05-07 13:13:37 -0400 |
commit | bcb255f91545d11ca5174727be78e0d858d32ecc (patch) | |
tree | 1eb54bf8934eb5a6617c95b988b944b705ff3eab | |
parent | a4d4b61b5ce4a7dd96ddc13c66b8716d3ad8eb51 (diff) | |
download | markdown-bcb255f91545d11ca5174727be78e0d858d32ecc.tar.gz markdown-bcb255f91545d11ca5174727be78e0d858d32ecc.tar.bz2 markdown-bcb255f91545d11ca5174727be78e0d858d32ecc.zip |
Fix typo.
-rw-r--r-- | markdown/blockprocessors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/markdown/blockprocessors.py b/markdown/blockprocessors.py index 223520f..db9add5 100644 --- a/markdown/blockprocessors.py +++ b/markdown/blockprocessors.py @@ -6,7 +6,7 @@ This parser handles basic parsing of Markdown blocks. It doesn't concern itself with inline elements such as **bold** or *italics*, but rather just catches blocks, lists, quotes, etc. -The BlockParser is made up of a bunch of BlockProssors, each handling a +The BlockParser is made up of a bunch of BlockProcessors, each handling a different type of block. Extensions may add/replace/remove BlockProcessors as they need to alter how markdown blocks are parsed. """ |