summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2010-08-07 02:47:31 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2010-08-07 02:47:31 +0000
commit490bd7f9bc323362dc98c01a88f9e8549dec7d42 (patch)
treecedc23e32cadaaad47c3483bf088ce9467fe13b1
parentb1c621bea479aaa5a143d6b864fac7afdb5f71d4 (diff)
[1.2.X] Fixed #13718 -- Corrected typo in model docs. Thanks to gvkalra for the report.
Backport of r13528 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13534 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--docs/topics/db/models.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/db/models.txt b/docs/topics/db/models.txt
index 6d7a7a4374..78c578d61a 100644
--- a/docs/topics/db/models.txt
+++ b/docs/topics/db/models.txt
@@ -353,7 +353,7 @@ For example, if a ``Pizza`` has multiple ``Topping`` objects -- that is, a
As with :class:`~django.db.models.ForeignKey`, you can also create
:ref:`recursive relationships <recursive-relationships>` (an object with a
-many-to-one relationship to itself) and :ref:`relationships to models not yet
+many-to-many relationship to itself) and :ref:`relationships to models not yet
defined <lazy-relationships>`; see :ref:`the model field reference
<ref-manytomany>` for details.