diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt index 538ee890473..f20e92772bd 100644 --- a/docs/ref/models/fields.txt +++ b/docs/ref/models/fields.txt @@ -1846,11 +1846,9 @@ that control how the relationship functions. .. note:: - Recursive relationships using an intermediary model and defined as - symmetrical (that is, with :attr:`symmetrical=True - `, which is the default) can't determine - the reverse accessors names, as they would be the same. You need to set - a :attr:`~ForeignKey.related_name` to at least one of them. If you'd + Recursive relationships using an intermediary model can't determine the + reverse accessors names, as they would be the same. You need to set a + :attr:`~ForeignKey.related_name` to at least one of them. If you'd prefer Django not to create a backwards relation, set ``related_name`` to ``'+'``.