summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2009-03-19 22:46:49 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2009-03-19 22:46:49 +0000
commit729c974e64ef26d2b6eacce50ba324124b13d461 (patch)
tree9b8dad88a6bf35afc69276a8e6ccbc28f0f864cf /docs
parent466198c4d95183c9ef8a41025945da24dfcbbd00 (diff)
Fixed #10546 -- Fixed a docs typo noticed by carljm.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10093 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/models/options.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/models/options.txt b/docs/ref/models/options.txt
index a0ef5b3d4b..ebbb59559a 100644
--- a/docs/ref/models/options.txt
+++ b/docs/ref/models/options.txt
@@ -100,7 +100,7 @@ For tests involving models with ``managed=False``, it's up to you to ensure
the correct tables are created as part of the test setup.
If you're interested in changing the Python-level behaviour of a model class,
-you *could* use ``managed=True`` and create a copy of an existing model.
+you *could* use ``managed=False`` and create a copy of an existing model.
However, there's a better approach for that situation: :ref:`proxy-models`.
``order_with_respect_to``