Commit 846febeb authored by Carl Meyer's avatar Carl Meyer
Browse files

[1.2.X] Fixed misspelling in model fields docs. Backport of [14096] from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14097 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent ee8fc8d9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -925,8 +925,8 @@ define the details of how the relation works.
    <abstract-base-classes>`; and when you do so
    :ref:`some special syntax <abstract-related-name>` is available.

    If you wish to supress the provision of a backwards relation, you may
    simply provide a ``related_name`` which ends with a '+' character.
    If you wish to suppress the provision of a backwards relation, you may
    simply provide a ``related_name`` which ends with a ``'+'`` character.
    For example::
   
        user = models.ForeignKey(User, related_name='+')