[1.5.x] Fixed #20735 -- clarified ManyToManyField constructor doc

Backport of ac223ff6d1 from master
This commit is contained in:
Christopher Medrela 2013-07-12 11:50:08 +02:00 committed by Tim Graham
parent 83119fd582
commit 80a7dd6f7f
1 changed files with 4 additions and 4 deletions

View File

@ -1117,10 +1117,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
<recursive-relationships>` and :ref:`lazy <lazy-relationships>` 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 <recursive-relationships>` and
:ref:`lazy <lazy-relationships>` relationships.
Related objects can be added, removed, or created with the field's
:class:`~django.db.models.fields.related.RelatedManager`.