summaryrefslogtreecommitdiff
path: root/docs/releases/1.4.txt
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2012-12-25 09:56:22 -0500
committerTim Graham <timograham@gmail.com>2012-12-26 19:07:22 -0500
commitb3a8c9dab87be6bc4b8096d292abe0b35c700bdd (patch)
treef48e2778028ef3c147d688b168f374b9d6dabd26 /docs/releases/1.4.txt
parente2ec7b47b3acb0338d971942ca7ffd36c2a4d8f4 (diff)
Fixed broken links, round 3. refs #19516
Diffstat (limited to 'docs/releases/1.4.txt')
-rw-r--r--docs/releases/1.4.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/releases/1.4.txt b/docs/releases/1.4.txt
index 9ff42accc5..746ed58945 100644
--- a/docs/releases/1.4.txt
+++ b/docs/releases/1.4.txt
@@ -526,8 +526,8 @@ Extended IPv6 support
~~~~~~~~~~~~~~~~~~~~~
Django 1.4 can now better handle IPv6 addresses with the new
-:class:`~django.db.models.fields.GenericIPAddressField` model field,
-:class:`~django.forms.fields.GenericIPAddressField` form field and
+:class:`~django.db.models.GenericIPAddressField` model field,
+:class:`~django.forms.GenericIPAddressField` form field and
the validators :data:`~django.core.validators.validate_ipv46_address` and
:data:`~django.core.validators.validate_ipv6_address`.
@@ -890,7 +890,7 @@ object, Django raises an exception.
The MySQL backend historically has raised :class:`MySQLdb.OperationalError`
when a query triggered an exception. We've fixed this bug, and we now raise
-:class:`django.db.utils.DatabaseError` instead. If you were testing for
+:exc:`django.db.DatabaseError` instead. If you were testing for
:class:`MySQLdb.OperationalError`, you'll need to update your ``except``
clauses.
@@ -1092,8 +1092,8 @@ wild, because they would confuse browsers too.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
It's now possible to check whether a template was used within a block of
-code with :meth:`~django.test.test.TestCase.assertTemplateUsed` and
-:meth:`~django.test.test.TestCase.assertTemplateNotUsed`. And they
+code with :meth:`~django.test.TestCase.assertTemplateUsed` and
+:meth:`~django.test.TestCase.assertTemplateNotUsed`. And they
can be used as a context manager::
with self.assertTemplateUsed('index.html'):