Skip to content

Commit e14747c

Browse files
committed
Merge branch '2.2' into 2.3
Conflicts: cookbook/form/dynamic_form_modification.rst
2 parents da1a8a3 + 594821b commit e14747c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

components/form/introduction.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ The Form component optionally integrates with Symfony's :doc:`HttpFoundation</co
7171
component to make this even easier.
7272

7373
To integrate the HttpFoundation component, add the
74-
:class:`Symfony\\Component\\Form\\Extension\\HttpFoundation\HttpFoundationExtension`
74+
:class:`Symfony\\Component\\Form\\Extension\\HttpFoundation\\HttpFoundationExtension`
7575
to your form factory::
7676

7777
use Symfony\Component\Form\Forms;
@@ -81,7 +81,7 @@ to your form factory::
8181
->addExtension(new HttpFoundationExtension())
8282
->getFormFactory();
8383

84-
Now, when you process a form, you can pass the :class:`Symfony\\Component\\HttpFoundation\\Request``
84+
Now, when you process a form, you can pass the :class:`Symfony\\Component\\HttpFoundation\\Request`
8585
object to :method:`Symfony\\Component\\Form\\Form::bind` instead of the raw
8686
array of submitted values.
8787

cookbook/form/dynamic_form_modification.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ On a form, we can usually listen to the following events:
463463

464464
.. versionadded:: 2.2.6
465465

466-
The behavior of the ``POST_SUBMIT`` changed slightly in 2.2.6, which the
466+
The behavior of the ``POST_SUBMIT`` event changed slightly in 2.2.6, which the
467467
below example uses.
468468

469469
The key is to add a ``POST_SUBMIT`` listener to the field that your new field

0 commit comments

Comments
 (0)