Skip to content

Fix typos #4885

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 13, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cookbook/form/form_collections.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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!).
you will learn about next!).

.. caution::

Expand Down