From 846febeb7abc935b986d168432323c49a3ee6735 Mon Sep 17 00:00:00 2001 From: Carl Meyer Date: Sat, 9 Oct 2010 22:42:01 +0000 Subject: [PATCH] [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 --- docs/ref/models/fields.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt index a390b4b843..e107f41454 100644 --- a/docs/ref/models/fields.txt +++ b/docs/ref/models/fields.txt @@ -925,8 +925,8 @@ define the details of how the relation works. `; and when you do so :ref:`some special syntax ` 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='+')