summaryrefslogtreecommitdiff
path: root/docs/topics/python3.txt
diff options
context:
space:
mode:
authorMichal Petrucha <michal.petrucha@ksp.sk>2012-09-08 18:54:33 +0200
committerMichal Petrucha <michal.petrucha@ksp.sk>2012-09-08 18:54:33 +0200
commit86e149ae055872fae0c2646cdfb002af287376d7 (patch)
tree4f184524f80c63197a5137478d6f2fd3b16f8df2 /docs/topics/python3.txt
parent7207327dd313522954da167f9a41396b97354c78 (diff)
Fixed a typo in the Python 3 compatibility docs.
Diffstat (limited to 'docs/topics/python3.txt')
-rw-r--r--docs/topics/python3.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/python3.txt b/docs/topics/python3.txt
index 89d0c9f91f..f5749faaf2 100644
--- a/docs/topics/python3.txt
+++ b/docs/topics/python3.txt
@@ -324,8 +324,8 @@ Writing compatible code with six
six_ is the canonical compatibility library for supporting Python 2 and 3 in
a single codebase. Read its documentation!
-:mod`six` is bundled with Django as of version 1.4.2. You can import it as
-:mod`django.utils.six`.
+:mod:`six` is bundled with Django as of version 1.4.2. You can import it as
+:mod:`django.utils.six`.
Here are the most common changes required to write compatible code.