From 574462367324691fcde1154cf52c4448bc9e4396 Mon Sep 17 00:00:00 2001 From: "Andrew (Andrius) Marcinkevicius" Date: Tue, 20 Jan 2015 08:47:16 +0200 Subject: [PATCH 1/2] Fix typos | Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | 2.3 | Fixed tickets | --- cookbook/form/form_collections.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cookbook/form/form_collections.rst b/cookbook/form/form_collections.rst index 9793a67d357..5a51d1a6e59 100644 --- a/cookbook/form/form_collections.rst +++ b/cookbook/form/form_collections.rst @@ -246,7 +246,7 @@ great, your user can't actually add any new tags yet. .. caution:: In this entry, you embed only one collection, but you are not limited - to this. You can also embed nested collection as many level down as you + to this. You can also embed nested collection as many levels down as you like. But if you use Xdebug in your development setup, you may receive a ``Maximum function nesting level of '100' reached, aborting!`` error. This is due to the ``xdebug.max_nesting_level`` PHP setting, which defaults @@ -459,7 +459,7 @@ is added to the ``Task`` class by calling the ``addTag`` method. Before this change, they were added internally by the form by calling ``$task->getTags()->add($tag)``. That was just fine, but forcing the use of the "adder" method makes handling these new ``Tag`` objects easier (especially if you're using Doctrine, which -we talk about next!). +we will talk about next!). .. caution:: From c3ef622f0239672e2ace8b41ac7eaed8cc57b7d1 Mon Sep 17 00:00:00 2001 From: "Andrew (Andrius) Marcinkevicius" Date: Sun, 1 Feb 2015 18:15:40 +0200 Subject: [PATCH 2/2] Remove usage of first person --- cookbook/form/form_collections.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/form/form_collections.rst b/cookbook/form/form_collections.rst index 5a51d1a6e59..e94f96fe7f9 100644 --- a/cookbook/form/form_collections.rst +++ b/cookbook/form/form_collections.rst @@ -459,7 +459,7 @@ is added to the ``Task`` class by calling the ``addTag`` method. Before this change, they were added internally by the form by calling ``$task->getTags()->add($tag)``. That was just fine, but forcing the use of the "adder" method makes handling these new ``Tag`` objects easier (especially if you're using Doctrine, which -we will talk about next!). +you will learn about next!). .. caution::