diff --git a/reference/forms/types/options/by_reference.rst.inc b/reference/forms/types/options/by_reference.rst.inc index 3065cc9d9c5..2e95ae3a5df 100644 --- a/reference/forms/types/options/by_reference.rst.inc +++ b/reference/forms/types/options/by_reference.rst.inc @@ -41,8 +41,8 @@ If you set ``by_reference`` to false, submitting looks like this:: $author->setEmail('...'); $article->setAuthor($author); -So, all that ``by_reference=false`` really does is force the framework to -call the setter on the parent object. +So, all that ``by_reference=false`` really does is that it clones the object, +which enforces the framework to call the setter on the parent object. Similarly, if you're using the :doc:`CollectionType ` field where your underlying collection data is an object (like with