summaryrefslogtreecommitdiffstats
path: root/Doc/faq/library.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-10-29 08:24:54 (GMT)
committerGeorg Brandl <georg@python.org>2014-10-29 08:24:54 (GMT)
commit77fe77d4af87b29ce36fc6d20a097ccb9cd08f76 (patch)
tree18555066ee2d4e6c5f5d775f7f38d747f080015f /Doc/faq/library.rst
parent728e4debd84e3fa345a6516e7fc0390ffc023ea8 (diff)
downloadcpython-77fe77d4af87b29ce36fc6d20a097ccb9cd08f76.zip
cpython-77fe77d4af87b29ce36fc6d20a097ccb9cd08f76.tar.gz
cpython-77fe77d4af87b29ce36fc6d20a097ccb9cd08f76.tar.bz2
Fixing broken links in doc, part 1: faq/
Diffstat (limited to 'Doc/faq/library.rst')
-rw-r--r--Doc/faq/library.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/faq/library.rst b/Doc/faq/library.rst
index 95c063b..3c47687 100644
--- a/Doc/faq/library.rst
+++ b/Doc/faq/library.rst
@@ -182,7 +182,7 @@ How do I create documentation from doc strings?
The :mod:`pydoc` module can create HTML from the doc strings in your Python
source code. An alternative for creating API documentation purely from
docstrings is `epydoc <http://epydoc.sf.net/>`_. `Sphinx
-<http://sphinx.pocoo.org>`_ can also include docstring content.
+<http://sphinx-doc.org>`_ can also include docstring content.
How do I get a single keypress at a time?