summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTimo Graham <timograham@gmail.com>2011-06-04 14:38:45 +0000
committerTimo Graham <timograham@gmail.com>2011-06-04 14:38:45 +0000
commit773e1717c0fbad45b3baab6a3026670e322301ad (patch)
treea96bdeb402b1e2c1ebfdae9dbc31b59e637cde85 /docs
parentd41a25ebc6f1cc8214989838a5994199e9b152be (diff)
Fixed #16145 - typo in manager docs; thanks leereilly.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16324 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/db/managers.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/topics/db/managers.txt b/docs/topics/db/managers.txt
index d9a144bd62..cbe381d46e 100644
--- a/docs/topics/db/managers.txt
+++ b/docs/topics/db/managers.txt
@@ -371,9 +371,9 @@ in ``get_query_set()`` is not appropriate for use as an automatic manager.
Set ``use_for_related_fields`` when you define the class
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-The ``use_for_related_fields`` attribute must be set on the manager *class*,
-object not on an *instance* of the class. The earlier example shows the
-correct way to set it, whereas the following will not work::
+The ``use_for_related_fields`` attribute must be set on the manager *class*, not
+on an *instance* of the class. The earlier example shows the correct way to set
+it, whereas the following will not work::
# BAD: Incorrect code
class MyManager(models.Manager):