summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Graham <timograham@gmail.com>2010-12-25 20:30:15 +0000
committerTimo Graham <timograham@gmail.com>2010-12-25 20:30:15 +0000
commit8a9be7477653c0acb19e27b4e978fd32e4091e9f (patch)
tree759cc196348c90388744ddaa8894531ba0e67d62
parentc4b8366884c258ca2efabc9cea7cfa3af4e22f82 (diff)
Fixed #14927 - typo in model option docs. thanks tiliv.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15051 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-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 1b04c4698c..e82974fa25 100644
--- a/docs/ref/models/options.txt
+++ b/docs/ref/models/options.txt
@@ -110,7 +110,7 @@ model handling are exactly the same as normal. This includes
2. If a model with ``managed=False`` contains a
:class:`~django.db.models.ManyToManyField` that points to another
unmanaged model, then the intermediate table for the many-to-many join
- will also not be created. However, a the intermediary table between one
+ will also not be created. However, the intermediary table between one
managed and one unmanaged model *will* be created.
If you need to change this default behavior, create the intermediary