Skip to content

Commit acfecd4

Browse files
committed
Merge branch '4.4'
* 4.4: Minor fixes Add missing asterisk (*) Use valid number of backslashes, depending on 1 or 2 ticks
2 parents c9d4942 + 315d213 commit acfecd4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

components/event_dispatcher.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ The unique event name can be any string, but optionally follows a few
8686
naming conventions:
8787

8888
* Use only lowercase letters, numbers, dots (``.``) and underscores (``_``);
89-
* Prefix names with a namespace followed by a dot (e.g. ``order.``, ``user.*``);
89+
* Prefix names with a namespace followed by a dot (e.g. ``order.*``, ``user.*``);
9090
* End names with a verb that indicates what action has been taken (e.g.
9191
``order.placed``).
9292

messenger.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ you can configure them to be sent to a transport:
249249
],
250250
]);
251251
252-
Thanks to this, the ``App\\Message\\SmsNotification`` will be sent to the ``async``
252+
Thanks to this, the ``App\Message\SmsNotification`` will be sent to the ``async``
253253
transport and its handler(s) will *not* be called immediately. Any messages not
254254
matched under ``routing`` will still be handled immediately.
255255

reference/configuration/twig.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ called to determine the default escaping applied to the template.
112112
base_template_class
113113
~~~~~~~~~~~~~~~~~~~
114114

115-
**type**: ``string`` **default**: ``'Twig\\Template'``
115+
**type**: ``string`` **default**: ``'Twig\Template'``
116116

117117
Twig templates are compiled into PHP classes before using them to render
118118
contents. This option defines the base class from which all the template classes

reference/forms/types/collection.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ type::
324324
entry_type
325325
~~~~~~~~~~
326326

327-
**type**: ``string`` **default**: ``Symfony\\Component\\Form\\Extension\\Core\\Type\\TextType``
327+
**type**: ``string`` **default**: ``'Symfony\Component\Form\Extension\Core\Type\TextType'``
328328

329329
This is the field type for each item in this collection (e.g. ``TextType``,
330330
``ChoiceType``, etc). For example, if you have an array of email addresses,

0 commit comments

Comments
 (0)