aboutsummaryrefslogtreecommitdiffstats
path: root/markdown.py
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2007-11-03 21:23:38 +0000
committerWaylan Limberg <waylan@gmail.com>2007-11-03 21:23:38 +0000
commit3d707bf4480c790bb824a97f57e7d7ab4c6b6c87 (patch)
tree5719fc02abac7fefe93c96198d4ecd98dd06a342 /markdown.py
parent5982780c3cc46f18dd3bd93022d61feb2972a843 (diff)
downloadmarkdown-3d707bf4480c790bb824a97f57e7d7ab4c6b6c87.tar.gz
markdown-3d707bf4480c790bb824a97f57e7d7ab4c6b6c87.tar.bz2
markdown-3d707bf4480c790bb824a97f57e7d7ab4c6b6c87.zip
Fixed a typo in the docstring.
Diffstat (limited to 'markdown.py')
-rw-r--r--markdown.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/markdown.py b/markdown.py
index 116a974..f4e159c 100644
--- a/markdown.py
+++ b/markdown.py
@@ -12,7 +12,7 @@ Converts Markdown to HTML. Basic usage as a module:
import markdown
md = Markdown()
- html = markdown.convert(your_text_string)
+ html = md.convert(your_text_string)
See http://www.freewisdom.org/projects/python-markdown/ for more
information and instructions on how to extend the functionality of the