summaryrefslogtreecommitdiff
path: root/docs/topics
diff options
context:
space:
mode:
authorJezeniel Zapanta <jezeniel.zapanta@gmail.com>2017-10-31 05:08:15 +0800
committerTim Graham <timograham@gmail.com>2018-03-20 21:09:08 -0400
commitabe6c5defefc7057e7fb5f47b79643f7b89f7d90 (patch)
treeac52500bab32074f0e4b66dd0709b0171ca483b1 /docs/topics
parent1834490a0c45a87b718c9ee84523a6d7ec6c15ee (diff)
Fixed #28514 -- Clarifed docs about idempotence of RelatedManager.add().
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/db/examples/many_to_many.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/db/examples/many_to_many.txt b/docs/topics/db/examples/many_to_many.txt
index 7173faaeca..065ab1605b 100644
--- a/docs/topics/db/examples/many_to_many.txt
+++ b/docs/topics/db/examples/many_to_many.txt
@@ -75,7 +75,7 @@ Create another ``Article``, and set it to appear in both ``Publications``::
>>> a2.publications.add(p1, p2)
>>> a2.publications.add(p3)
-Adding a second time is OK::
+Adding a second time is OK, it will not duplicate the relation::
>>> a2.publications.add(p3)