Skip to content

Small fixes #12003

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cache.rst
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ Each custom pool becomes a service where the service id is the name of the pool
using the camel case version of its name - e.g. ``custom_thing.cache`` can be
injected automatically by naming the argument ``$customThingCache`` and type-hinting it
with either :class:`Symfony\\Contracts\\Cache\\CacheInterface` or
``Psr\\Cache\\CacheItemPoolInterface``::
``Psr\Cache\CacheItemPoolInterface``::

use Symfony\Contracts\Cache\CacheInterface;

Expand Down
2 changes: 1 addition & 1 deletion components/cache/cache_pools.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Creating Cache Pools

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

.. toctree::
Expand Down
4 changes: 2 additions & 2 deletions form/create_custom_field_type.rst
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ The last step is to create the actual Twig template that will render the type.
The template contents depend on which HTML, CSS and JavaScript frameworks and
libraries are used in your application:

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

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

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

{# templates/form/custom_types.html.twig #}
{% block postal_address_row %}
Expand Down
2 changes: 1 addition & 1 deletion setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ commands to create the Symfony application:

The only difference between these two commands is the number of packages
installed. The ``--full`` option installs all the packages that you usually
need to build web apps. Therefore, the installation size will be much bigger.
need to build web applications. Therefore, the installation size will be much bigger.

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