diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt
index 23dcf4b..3c299a9 100644
a
|
b
|
define the details of how the relation works.
|
1003 | 1003 | :ref:`some special syntax <abstract-related-name>` is available. |
1004 | 1004 | |
1005 | 1005 | If you'd prefer Django didn't create a backwards relation, set ``related_name`` |
1006 | | to ``'+'``. For example, this will ensure that the ``User`` model won't get a |
1007 | | backwards relation to this model:: |
| 1006 | to ``'+'`` or end it with ``'+'``. For example, this will ensure that the |
| 1007 | ``User`` model won't get a backwards relation to this model:: |
1008 | 1008 | |
1009 | 1009 | user = models.ForeignKey(User, related_name='+') |
1010 | 1010 | |
| 1011 | As the ``related_name`` attribute must be unique in a model in any case, you |
| 1012 | have to set it to different values each ended with ``'+'`` if you want to |
| 1013 | suppress two backwards relations on the same model:: |
| 1014 | |
| 1015 | user = models.ForeignKey(User, related_name='u+') |
| 1016 | location = models.ForeignKey(Location, related_name='l+') |
| 1017 | |
1011 | 1018 | .. attribute:: ForeignKey.to_field |
1012 | 1019 | |
1013 | 1020 | The field on the related object that the relation is to. By default, Django |