diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt index f5c1058b1734a..869996643f2f8 100644 --- a/docs/ref/models/fields.txt +++ b/docs/ref/models/fields.txt @@ -1184,10 +1184,10 @@ The possible values for :attr:`~ForeignKey.on_delete` are found in .. class:: ManyToManyField(othermodel, [**options]) -A many-to-many relationship. Requires a positional argument: the class to which -the model is related. This works exactly the same as it does for -:class:`ForeignKey`, including all the options regarding :ref:`recursive -` and :ref:`lazy ` relationships. +A many-to-many relationship. Requires a positional argument: the class to +which the model is related, which works exactly the same as it does for +:class:`ForeignKey`, including :ref:`recursive ` and +:ref:`lazy ` relationships. Related objects can be added, removed, or created with the field's :class:`~django.db.models.fields.related.RelatedManager`.