Skip to content

Commit ee61c91

Browse files
committed
minor #12003 Small fixes (OskarStark)
This PR was squashed before being merged into the 4.2 branch (closes #12003). Discussion ---------- Small fixes Commits ------- ed131d2 Small fixes
2 parents 31d13c5 + ed131d2 commit ee61c91

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

cache.rst

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

283283
use Symfony\Contracts\Cache\CacheInterface;
284284

components/cache/cache_pools.rst

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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 %}
@@ -485,7 +485,7 @@ for this form class and :doc:`tag it </service_container/tags>` with ``form.type
485485
The variables added in ``buildView()`` are available in the form type template
486486
as any other regular Twig variable:
487487

488-
.. code-block:: twig
488+
.. code-block:: html+twig
489489

490490
{# templates/form/custom_types.html.twig #}
491491
{% block postal_address_row %}

setup.rst

Lines changed: 1 addition & 1 deletion
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)