From 64fdd844740496519967068998c35109059338b5 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Thu, 10 Nov 2011 08:41:21 +0000 Subject: [PATCH] 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 --- docs/topics/db/models.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/db/models.txt b/docs/topics/db/models.txt index e16622ef06..f907c23fe3 100644 --- a/docs/topics/db/models.txt +++ b/docs/topics/db/models.txt @@ -923,7 +923,7 @@ Along with another app ``rare/models.py``:: class ChildB(Base): 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.ChildB.m2m`` field will be ``common_childb_related``, and finally the reverse name of the ``rare.ChildB.m2m`` field will be ``rare_childb_related``.