Skip to content

Commit d14bf28

Browse files
committed
Merge pull request #3035 from xabbuh/fix-build-errors-2.3
fix build errors
2 parents 43a5cec + a7da13a commit d14bf28

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

components/debug.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ Enabling them all is as easy as it can get::
3131

3232
The :method:`Symfony\\Component\\Debug\\Debug::enable` method registers an
3333
error handler and an exception handler. If the :doc:`ClassLoader component
34-
</components/class_loader>` is available, a special class loader is also
35-
registered.
34+
</components/class_loader/introduction>` is available, a special class loader
35+
is also registered.
3636

3737
Read the following sections for more information about the different available
3838
tools.

components/intl.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,9 @@ replace the intl classes:
5151
Composer automatically exposes these classes in the global namespace.
5252

5353
If you don't use Composer but the
54-
:doc:`Symfony ClassLoader component</components/class_loader>`, you need to
55-
expose them manually by adding the following lines to your autoload code::
54+
:doc:`Symfony ClassLoader component </components/class_loader/introduction>`,
55+
you need to expose them manually by adding the following lines to your autoload
56+
code::
5657

5758
if (!function_exists('intl_is_failure')) {
5859
require '/path/to/Icu/Resources/stubs/functions.php';

cookbook/form/dynamic_form_modification.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ On a form, we can usually listen to the following events:
475475
below example uses.
476476

477477
The key is to add a ``POST_SUBMIT`` listener to the field that your new field
478-
depends on. If you add a ``POST_SUBMIT`` listener to a form child (e.g. ``sport`),
478+
depends on. If you add a ``POST_SUBMIT`` listener to a form child (e.g. ``sport``),
479479
and add new children to the parent form, the Form component will detect the
480480
new field automatically and map it to the submitted client data.
481481

0 commit comments

Comments
 (0)