summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-09-04 10:23:32 -0400
committerTim Graham <timograham@gmail.com>2014-09-04 10:23:32 -0400
commit646b9ce8484261872924253d47adda5346d51afe (patch)
tree55fb8363a214a1c8c8ac56932b0e6c910717b806 /docs
parentd7a9659110bbdab48d364c534d2bdd74a5f4aa36 (diff)
Fixed typo in 1.8 release notes.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/releases/1.8.txt b/docs/releases/1.8.txt
index 34530885cc..f38d0990b2 100644
--- a/docs/releases/1.8.txt
+++ b/docs/releases/1.8.txt
@@ -745,5 +745,5 @@ will be removed in Django 2.0. Historically, it was used to handle fields where
type conversion was needed when loading from the database, but it was not used
in ``.values()`` calls or in aggregates. It has been replaced with
:meth:`~django.db.models.Field.from_db_value`. Note that the new approach does
-not call the :meth:`~django.db.models.Fields.to_python`` method on assignment
+not call the :meth:`~django.db.models.Field.to_python` method on assignment
as was the case with ``SubfieldBase``.