summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorKenneth Reitz <me@kennethreitz.com>2012-06-07 17:07:11 -0700
committerKenneth Reitz <me@kennethreitz.com>2012-06-07 17:07:11 -0700
commit652ac85549635428b89117a10d3584fc15fd4690 (patch)
treeb6a3bb6fbb47ac8f2b98b73cc03671d71cbc8db4 /docs
parentc469360a0ef415c3cdb42063d1fef5e76df4c35d (diff)
parent05ea3c35fce21410cbd697b290cda65dc117fbbe (diff)
downloadtablib-652ac85549635428b89117a10d3584fc15fd4690.tar.gz
Merge pull request #77 from rbonvall/fix-typos
Fix typos
Diffstat (limited to 'docs')
-rw-r--r--docs/development.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/development.rst b/docs/development.rst
index 90bdb43..03b6929 100644
--- a/docs/development.rst
+++ b/docs/development.rst
@@ -71,7 +71,7 @@ Feature / Hotfix / Release branches follow a `Successful Git Branching Model`_ .
Each release is tagged.
-When submitting patches, please place your feature/change in its own branch prior to opening a pull reqeust on GitHub_.
+When submitting patches, please place your feature/change in its own branch prior to opening a pull request on GitHub_.
.. _Git: http://git-scm.org
@@ -210,13 +210,13 @@ Then, to build an HTML version of the docs, simply run the following from the **
Your ``docs/_build/html`` directory will then contain an HTML representation of the documentation, ready for publication on most web servers.
-You can also generate the documentation in **ebpub**, **latex**, **json**, *&c* similarly.
+You can also generate the documentation in **epub**, **latex**, **json**, *&c* similarly.
.. admonition:: GitHub Pages
To push the documentation up to `GitHub Pages`_, you will first need to run `sphinx-to-github`_ against your ``docs/_build/html`` directory.
- GitHub Pages are powered by an HTML generation system called Jeckyl_, which is configured to ignore files and folders that begin with "``_``" (*ie.* **_static**).
+ GitHub Pages are powered by an HTML generation system called Jekyll_, which is configured to ignore files and folders that begin with "``_``" (*ie.* **_static**).
@@ -238,7 +238,7 @@ You can also generate the documentation in **ebpub**, **latex**, **json**, *&c*
.. _`reStructured Text`: http://docutils.sourceforge.net/rst.html
.. _Sphinx: http://sphinx.pocoo.org
.. _`GitHub Pages`: http://pages.github.com
-.. _Jeckyl: http://github.com/mojombo/jekyll
+.. _Jekyll: http://github.com/mojombo/jekyll
.. _`sphinx-to-github`: http://github.com/michaeljones/sphinx-to-github
----------