Skip to content

Commit 6231f04

Browse files
committed
Merge branch '4.4'
* 4.4: Small fixes
2 parents 3654d13 + 937bd02 commit 6231f04

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

cache.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ Each custom pool becomes a service where the service id is the name of the pool
274274
using the camel case version of its name - e.g. ``custom_thing.cache`` can be
275275
injected automatically by naming the argument ``$customThingCache`` and type-hinting it
276276
with either :class:`Symfony\\Contracts\\Cache\\CacheInterface` or
277-
``Psr\\Cache\\CacheItemPoolInterface``::
277+
``Psr\Cache\CacheItemPoolInterface``::
278278

279279
use Symfony\Contracts\Cache\CacheInterface;
280280

components/cache/cache_pools.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Creating Cache Pools
2727

2828
Cache Pools are created through the **cache adapters**, which are classes that
2929
implement both :class:`Symfony\\Contracts\\Cache\\CacheInterface` and
30-
``Psr\\Cache\\CacheItemPoolInterface``. This component provides several adapters
30+
``Psr\Cache\CacheItemPoolInterface``. This component provides several adapters
3131
ready to use in your applications.
3232

3333
.. toctree::

form/create_custom_field_type.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ The last step is to create the actual Twig template that will render the type.
401401
The template contents depend on which HTML, CSS and JavaScript frameworks and
402402
libraries are used in your application:
403403

404-
.. code-block:: twig
404+
.. code-block:: html+twig
405405

406406
{# templates/form/custom_types.html.twig #}
407407
{% block postal_address_row %}
@@ -479,7 +479,7 @@ for this form class and :doc:`tag it </service_container/tags>` with ``form.type
479479
The variables added in ``buildView()`` are available in the form type template
480480
as any other regular Twig variable:
481481

482-
.. code-block:: twig
482+
.. code-block:: html+twig
483483

484484
{# templates/form/custom_types.html.twig #}
485485
{% block postal_address_row %}

setup.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ commands to create the Symfony application:
3535
3636
The only difference between these two commands is the number of packages
3737
installed. The ``--full`` option installs all the packages that you usually
38-
need to build web apps. Therefore, the installation size will be much bigger.
38+
need to build web applications. Therefore, the installation size will be much bigger.
3939

4040
Both commands will create a new ``my-project/`` directory, download some
4141
dependencies into it and even generate the basic directories and files you'll

0 commit comments

Comments
 (0)