diff options
author | Waylan Limberg <waylan@gmail.com> | 2012-08-28 09:16:18 -0700 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2012-08-28 09:16:18 -0700 |
commit | 7d8ced4cc8d43a45ea9fed8eebfcbaeb5619597a (patch) | |
tree | ef3a933147039d7fd2b886af6263def67fcb5327 /docs/reference.txt | |
parent | cb98f6a5f93f95e91ecee7c6abf2852084a8557f (diff) | |
parent | 58b77ab4ae1239da08d43cb8bc316f6733512fea (diff) | |
download | markdown-7d8ced4cc8d43a45ea9fed8eebfcbaeb5619597a.tar.gz markdown-7d8ced4cc8d43a45ea9fed8eebfcbaeb5619597a.tar.bz2 markdown-7d8ced4cc8d43a45ea9fed8eebfcbaeb5619597a.zip |
Merge pull request #136 from Grahack/typos
Misc typos.
Diffstat (limited to 'docs/reference.txt')
-rw-r--r-- | docs/reference.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/reference.txt b/docs/reference.txt index c438dea..bd837ff 100644 --- a/docs/reference.txt +++ b/docs/reference.txt @@ -61,7 +61,7 @@ The following options are available on the `markdown.markdown` function: the [extension documentation](extensions/index.html) for a list of available extensions. - The list of extensions may contain instances of extensions or stings of + The list of extensions may contain instances of extensions or strings of extension names. If an extension name is provided as a string, the extension must be importable as a python module either within the `markdown.extensions` package or on your PYTHONPATH with a name starting @@ -234,7 +234,7 @@ string must be passed to one of two instance methods: md.reset() html2 = md.convert(text2) - You can also change calls to `reset` togeather: + You can also change calls to `reset` together: html3 = md.reset().convert(text3) |