From 4e4cf33342352bfc74efeff13eaf3d8c51e12ae9 Mon Sep 17 00:00:00 2001 From: Karsten Dambekalns Date: Thu, 30 Aug 2012 11:56:06 +0300 Subject: [PATCH] Update en/reference/working-with-associations.rst MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Clarifiy that orphanRemoval works with one-to-one, one-to-many and many-to-many associations. --- en/reference/working-with-associations.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/reference/working-with-associations.rst b/en/reference/working-with-associations.rst index 2781d5cd1..253edad7e 100644 --- a/en/reference/working-with-associations.rst +++ b/en/reference/working-with-associations.rst @@ -541,7 +541,7 @@ from collections. If an Entity of type ``A`` contains references to privately owned Entities ``B`` then if the reference from ``A`` to ``B`` is removed the entity ``B`` should also be removed, because it is not used anymore. -OrphanRemoval works with both one-to-one and one-to-many associations. +OrphanRemoval works with one-to-one, one-to-many and many-to-many associations. .. note::