Skip to content

Commit 0598133

Browse files
committed
minor #11239 use application(s) instead of app(s) (OskarStark)
This PR was merged into the 4.2 branch. Discussion ---------- use application(s) instead of app(s) Follow up of #11218 against `4.2` branch Commits ------- a669ceb use application(s) instead of app(s)
2 parents 4b9df24 + a669ceb commit 0598133

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

components/mercure.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The Mercure Component
99
browsers and other HTTP clients in a convenient, fast, reliable
1010
and battery-friendly way.
1111
It is especially useful to publish real-time updates of resources served
12-
through web APIs, to reactive web and mobile apps.
12+
through web APIs, to reactive web and mobile applications.
1313

1414
The Mercure Component implements the "publisher" part of the Mercure Protocol.
1515

configuration/front_controllers_and_kernel.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ It then creates the service container before serving requests in its
7474
:method:`Symfony\\Component\\HttpKernel\\HttpKernelInterface::handle`
7575
method.
7676

77-
The kernel used in Symfony apps extends from :class:`Symfony\\Component\\HttpKernel\\Kernel`
77+
The kernel used in Symfony applications extends from :class:`Symfony\\Component\\HttpKernel\\Kernel`
7878
and uses the :class:`Symfony\\Bundle\\FrameworkBundle\\Kernel\\MicroKernelTrait`.
7979
The ``Kernel`` class leaves some methods from :class:`Symfony\\Component\\HttpKernel\\KernelInterface`
8080
unimplemented and the ``MicroKernelTrait`` defines several abstract methods, so

email.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ other encryption or auth mode, you must override those values
139139
140140
If your Gmail account uses 2-Step-Verification, you must `generate an App password`_
141141
and use it as the value of the mailer password. You must also ensure that you
142-
`allow less secure apps to access your Gmail account`_.
142+
`allow less secure applications to access your Gmail account`_.
143143

144144
Using Cloud Services to Send Emails
145145
-----------------------------------
@@ -175,5 +175,5 @@ Learn more
175175
.. _`SendGrid`: https://sendgrid.com/
176176
.. _`Amazon SES`: http://aws.amazon.com/ses/
177177
.. _`generate an App password`: https://support.google.com/accounts/answer/185833
178-
.. _`allow less secure apps to access your Gmail account`: https://support.google.com/accounts/answer/6010255
178+
.. _`allow less secure applications to access your Gmail account`: https://support.google.com/accounts/answer/6010255
179179
.. _`RFC 3986`: https://www.ietf.org/rfc/rfc3986.txt

form/form_themes.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ great when using some of the most popular CSS frameworks. Each theme is defined
1818
in a single Twig template:
1919

2020
* `form_div_layout.html.twig`_, wraps each form field inside a ``<div>`` element
21-
and it's the theme used by default in Symfony apps unless you configure it as
22-
explained later in this article.
21+
and it's the theme used by default in Symfony applications unless you configure
22+
it as explained later in this article.
2323
* `form_table_layout.html.twig`_, wraps the entire form inside a ``<table>``
2424
element and each form field inside a ``<tr>`` element.
2525
* `bootstrap_3_layout.html.twig`_, wraps each form field inside a ``<div>``
@@ -157,9 +157,9 @@ Disabling Global Themes for Single Forms
157157
Global form themes defined in the app are always applied to all forms, even
158158
those which use the ``form_theme`` tag to apply their own themes. You may want
159159
to disable this for example when creating an admin interface for a bundle which
160-
can be installed on different Symfony apps (and so you can't control what themes
161-
are enabled globally). To do that, add the ``only`` keyword after the list of
162-
form themes:
160+
can be installed on different Symfony applications (and so you can't control what
161+
themes are enabled globally). To do that, add the ``only`` keyword after the list
162+
of form themes:
163163

164164
.. code-block:: twig
165165
@@ -406,7 +406,7 @@ Creating a Form Theme in a Separate Template
406406
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
407407

408408
This is recommended when creating form themes that are used in your entire app
409-
or even reused in different Symfony apps. You only need to create a Twig
409+
or even reused in different Symfony applications. You only need to create a Twig
410410
template somewhere and follow the :ref:`form fragment naming <form-fragment-naming>`
411411
rules to know which Twig blocks to define.
412412

frontend/assetic/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ Assetic
55

66
Using Assetic to manage web assets in Symfony applications is no longer
77
recommended. Instead, use :doc:`Webpack Encore </frontend>`, which bridges
8-
Symfony apps with modern JavaScript-based tools to manage web assets.
8+
Symfony applications with modern JavaScript-based tools to manage web assets.

mercure.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -523,8 +523,8 @@ hypermedia API, and automatic update broadcasting through the Mercure hub::
523523
}
524524

525525
As showcased `in this recording`_, the API Platform Client Generator also
526-
allows to scaffold complete React and React Native apps from this API.
527-
These apps will render the content of Mercure updates in real-time.
526+
allows to scaffold complete React and React Native applications from this API.
527+
These applications will render the content of Mercure updates in real-time.
528528

529529
Checkout `the dedicated API Platform documentation`_ to learn more about
530530
its Mercure support.

security.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ here: :doc:`User Providers </security/user_provider>`.
109109
2c) Encoding Passwords
110110
----------------------
111111

112-
Not all apps have "users" that need passwords. *If* your users have passwords,
112+
Not all applications have "users" that need passwords. *If* your users have passwords,
113113
you can control how those passwords are encoded in ``security.yaml``. The ``make:user``
114114
command will pre-configure this for you:
115115

security/user_provider.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,8 @@ Memory User Provider
208208
--------------------
209209

210210
It's not recommended to use this provider in real applications because of its
211-
limitations and how difficult it is to manage users. It may be useful in app
212-
prototypes and for limited apps that don't store users in databases.
211+
limitations and how difficult it is to manage users. It may be useful in application
212+
prototypes and for limited applications that don't store users in databases.
213213

214214
This user provider stores all user information in a configuration file,
215215
including their passwords. That's why the first step is to configure how these

0 commit comments

Comments
 (0)