From abe6c5defefc7057e7fb5f47b79643f7b89f7d90 Mon Sep 17 00:00:00 2001 From: Jezeniel Zapanta Date: Tue, 31 Oct 2017 05:08:15 +0800 Subject: Fixed #28514 -- Clarifed docs about idempotence of RelatedManager.add(). --- docs/topics/db/examples/many_to_many.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/topics/db/examples') 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) -- cgit v1.3