Skip to content

Commit 16e8b05

Browse files
javiereguiluzxabbuh
authored andcommitted
Fixed code syntax issues
1 parent 0607517 commit 16e8b05

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

components/http_foundation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,8 @@ the
241241
method tells you if the request contains a session which was started in one of
242242
the previous requests.
243243

244-
Accessing `Accept-*` Headers Data
245-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
244+
Accessing ``Accept-*`` Headers Data
245+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
246246

247247
You can easily access basic data extracted from ``Accept-*`` headers
248248
by using the following methods:

doctrine/custom_dql_functions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ In Symfony, you can register your custom DQL functions as follows:
7878

7979
In case the ``entity_managers`` were named explicitly, configuring the functions with the
8080
orm directly will trigger the exception `Unrecognized option "dql" under "doctrine.orm"`.
81-
The `dql` configuration block must be defined under the named entity manager.
81+
The ``dql`` configuration block must be defined under the named entity manager.
8282

8383
.. configuration-block::
8484

doctrine/resolve_target_entity.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ without making them hard dependencies.
2121
Background
2222
----------
2323

24-
Suppose you have an `InvoiceBundle` which provides invoicing functionality
25-
and a `CustomerBundle` that contains customer management tools. You want
24+
Suppose you have an InvoiceBundle which provides invoicing functionality
25+
and a CustomerBundle that contains customer management tools. You want
2626
to keep these separated, because they can be used in other systems without
2727
each other, but for your application you want to use them together.
2828

form/without_class.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ How to Use a Form without a Data Class
66

77
In most cases, a form is tied to an object, and the fields of the form get
88
and store their data on the properties of that object. This is exactly what
9-
you've seen so far in this chapter with the `Task` class.
9+
you've seen so far in this chapter with the ``Task`` class.
1010

1111
But sometimes, you may just want to use a form without a class, and get back
1212
an array of the submitted data. This is actually really easy::

reference/forms/types/options/choice_value.rst.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ If ``null`` is used, an incrementing integer is used as the name.
1717
.. caution::
1818
1919
In Symfony 2.7, there was a small backwards-compatibility break with how the
20-
`value` attribute of options is generated. This is not a problem unless you
20+
``value`` attribute of options is generated. This is not a problem unless you
2121
rely on the option values in JavaScript. See `issue #14825`_ for details.
2222
2323
.. _`issue #14825`: https://github.com/symfony/symfony/pull/14825

templating/twig_extension.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ As an example you'll create a price filter to format a given number into price::
5858

5959
.. tip::
6060

61-
Along with custom filters, you can also add custom `functions` and register
62-
`global variables`.
61+
Along with custom filters, you can also add custom `functions`_ and register
62+
`global variables`_.
6363

6464
Register an Extension as a Service
6565
----------------------------------

0 commit comments

Comments
 (0)