diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt
index 23dcf4b..ebd9704 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 | |
… |
… |
that control how the relationship functions.
|
1096 | 1096 | |
1097 | 1097 | Same as :attr:`ForeignKey.related_name`. |
1098 | 1098 | |
| 1099 | If you have more than one ``related_name`` attribute for a |
| 1100 | ``ManyToManyField`` pointing to the same model, you have to set them to |
| 1101 | different values each ended with ``'+'`` if you want to suppress the |
| 1102 | backwards relations:: |
| 1103 | |
| 1104 | users = models.ManyToManyField(User, related_name='u+') |
| 1105 | referents = models.ManyToManyField(User, related_name='ref+') |
| 1106 | |
1099 | 1107 | .. attribute:: ManyToManyField.limit_choices_to |
1100 | 1108 | |
1101 | 1109 | Same as :attr:`ForeignKey.limit_choices_to`. |