Fixed #17184 -- Typo in models documentation. Thanks elimisteve for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17079 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
f1bc3b0401
commit
64fdd84474
|
@ -923,7 +923,7 @@ Along with another app ``rare/models.py``::
|
||||||
class ChildB(Base):
|
class ChildB(Base):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
The reverse name of the ``commmon.ChildA.m2m`` field will be
|
The reverse name of the ``common.ChildA.m2m`` field will be
|
||||||
``common_childa_related``, whilst the reverse name of the
|
``common_childa_related``, whilst the reverse name of the
|
||||||
``common.ChildB.m2m`` field will be ``common_childb_related``, and finally the
|
``common.ChildB.m2m`` field will be ``common_childb_related``, and finally the
|
||||||
reverse name of the ``rare.ChildB.m2m`` field will be ``rare_childb_related``.
|
reverse name of the ``rare.ChildB.m2m`` field will be ``rare_childb_related``.
|
||||||
|
|
Loading…
Reference in New Issue