Skip to content

Commit 5e5cfcb

Browse files
committed
-
1 parent 3126628 commit 5e5cfcb

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

reference/constraints/Expression.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ One way to accomplish this is with the Expression constraint:
140140
141141
The :ref:`expression <reference-constraint-expression-option>` option is the
142142
expression that must return true in order for validation to pass. Learn more
143-
about the :doc:`expression language syntax </reference/formats/expression-language>`.
143+
about the :doc:`expression language syntax </reference/formats/expression_language>`.
144144

145145
.. sidebar:: Mapping the Error to a Specific Field
146146

@@ -262,7 +262,7 @@ Options
262262

263263
The expression that will be evaluated. If the expression evaluates to a false
264264
value (using ``==``, not ``===``), validation will fail. Learn more about the
265-
:doc:`expression language syntax </reference/formats/expression-language>`.
265+
:doc:`expression language syntax </reference/formats/expression_language>`.
266266

267267
Depending on how you use the constraint, you have access to different variables
268268
in your expression:

reference/formats/expression_language.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ This will print out ``root``.
115115
.. tip::
116116

117117
To read how to register your own functions to use in an expression, see
118-
":doc:`/components/expression_language/extending`".
118+
":ref:`expression-language-extending`".
119119

120120
.. _component-expression-arrays:
121121

routing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ arbitrary matching logic:
415415
};
416416
417417
The value of the ``condition`` option is an expression using any valid
418-
:doc:`expression language syntax </reference/formats/expression-language>` and
418+
:doc:`expression language syntax </reference/formats/expression_language>` and
419419
can use any of these variables created by Symfony:
420420

421421
``context``

security/expressions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ that method is invented for this example).
3838

3939
.. _security-expression-variables:
4040

41-
The security expression must use any valid :doc:`expression language syntax </reference/formats/expression-language>`
41+
The security expression must use any valid :doc:`expression language syntax </reference/formats/expression_language>`
4242
and can use any of these variables created by Symfony:
4343

4444
``user``

service_container/expression_language.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ to another service: ``App\Mailer``. One way to do this is with an expression:
7171
->args([expr("service('App\\\\Mail\\\\MailerConfiguration').getMailerMethod()")]);
7272
};
7373
74-
Learn more about the :doc:`expression language syntax </reference/formats/expression-language>`.
74+
Learn more about the :doc:`expression language syntax </reference/formats/expression_language>`.
7575

7676
In this context, you have access to 2 functions:
7777

0 commit comments

Comments
 (0)