summaryrefslogtreecommitdiff
path: root/docs/releases/1.2.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/releases/1.2.txt')
-rw-r--r--docs/releases/1.2.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/releases/1.2.txt b/docs/releases/1.2.txt
index 1098917c95..7dccffaa89 100644
--- a/docs/releases/1.2.txt
+++ b/docs/releases/1.2.txt
@@ -146,7 +146,7 @@ In order to support multiple database configurations, Django 1.2 has
added a ``_state`` attribute to object instances. This attribute will
appear in ``__dict__`` for a model instance. If your code relies on
iterating over __dict__ to obtain a list of fields, you must now
-filter the ``_state`` attribute of out ``__dict__``.
+filter the ``_state`` attribute out of ``__dict__``.
``get_db_prep_*()`` methods on ``Field``
----------------------------------------