summaryrefslogtreecommitdiff
path: root/docs/topics/python3.txt
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-10-16 20:00:17 -0400
committerTim Graham <timograham@gmail.com>2014-10-16 20:00:17 -0400
commitbabbf1899916a0ad4eae45e40ca13e2c00707718 (patch)
tree9995ad27baee05fb7fb1233c2bb430b660b8f84f /docs/topics/python3.txt
parentbedd43929731f3a3c3dca6725d5e09239b36a210 (diff)
Fixed some intersphinx references.
Diffstat (limited to 'docs/topics/python3.txt')
-rw-r--r--docs/topics/python3.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/python3.txt b/docs/topics/python3.txt
index 9daba275c6..7769fe8537 100644
--- a/docs/topics/python3.txt
+++ b/docs/topics/python3.txt
@@ -79,7 +79,7 @@ String handling
---------------
Python 2's `unicode`_ type was renamed :class:`str` in Python 3,
-``str()`` was renamed :func:`bytes`, and `basestring`_ disappeared.
+``str()`` was renamed :class:`bytes`, and `basestring`_ disappeared.
six_ provides :ref:`tools <string-handling-with-six>` to deal with these
changes.