diff options
author | Grahack <christophegragnic@gmail.com> | 2013-08-24 21:33:32 +0200 |
---|---|---|
committer | Grahack <christophegragnic@gmail.com> | 2013-08-24 21:33:32 +0200 |
commit | 47e4a79190613f32146b37efe4ab584d42f5c0e5 (patch) | |
tree | 1765907da8b016ea17823724b11baf68c1a66a3a | |
parent | 018dd886d3500090dec57fcf0de92b91fa3201f0 (diff) | |
download | markdown-47e4a79190613f32146b37efe4ab584d42f5c0e5.tar.gz markdown-47e4a79190613f32146b37efe4ab584d42f5c0e5.tar.bz2 markdown-47e4a79190613f32146b37efe4ab584d42f5c0e5.zip |
Typo in util.py
implemenation -> implementation
-rw-r--r-- | markdown/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/markdown/util.py b/markdown/util.py index 7cb933a..d292aad 100644 --- a/markdown/util.py +++ b/markdown/util.py @@ -57,7 +57,7 @@ RTL_BIDI_RANGES = ( ('\u0590', '\u07FF'), # Extensions should use "markdown.util.etree" instead of "etree" (or do `from # markdown.util import etree`). Do not import it by yourself. -try: # Is the C implemenation of ElementTree available? +try: # Is the C implementation of ElementTree available? import xml.etree.cElementTree as etree from xml.etree.ElementTree import Comment # Serializers (including ours) test with non-c Comment |