Skip to content

Commit b735b90

Browse files
committed
minor #16273 Correct spelling & grammar in 4.4 frontend/ (gnito-org)
This PR was merged into the 4.4 branch. Discussion ---------- Correct spelling & grammar in 4.4 frontend/ <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/releases for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `5.x` for features of unreleased versions). --> Commits ------- f660443 Correct spelling & grammar in 4.4 frontend/
2 parents 2ed3219 + f660443 commit b735b90

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

frontend/encore/advanced-config.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Summarized, Encore generates the Webpack configuration that's used in your
55
``webpack.config.js`` file. Encore doesn't support adding all of Webpack's
66
`configuration options`_, because many can be added on your own.
77

8-
For example, suppose you need to resolve automatically a new extension.
8+
For example, suppose you need to automatically resolve a new extension.
99
To do that, modify the config after fetching it from Encore:
1010

1111
.. code-block:: javascript

frontend/encore/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ And the new ``assets/css/app.css`` file:
168168
background-color: lightgray;
169169
}
170170
171-
You'll customize and learn more about these file in :doc:`/frontend/encore/simple-example`.
171+
You'll customize and learn more about these files in :doc:`/frontend/encore/simple-example`.
172172

173173
.. caution::
174174

frontend/encore/page-specific-assets.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ page-specific JavaScript and CSS file from a page-specific entry (e.g. ``checkou
2424
.. tip::
2525

2626
Be sure to use :doc:`split chunks </frontend/encore/split-chunks>`
27-
to avoid duplicating and shared code between your entry files.
27+
to avoid duplicate and shared code between your entry files.

frontend/encore/simple-example.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ file to ``app.scss`` and update the ``import`` statement:
313313
- import '../css/app.css';
314314
+ import '../css/app.scss';
315315
316-
Then, tell Encore to enable the Sass pre-processor:
316+
Then, tell Encore to enable the Sass preprocessor:
317317

318318
.. code-block:: diff
319319

frontend/encore/url-loader.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Then enable it in your ``webpack.config.js``:
3333
3434
The ``limit`` option defines the maximum size in bytes of the inlined files. In
3535
the previous example, font and image files having a size below or equal to 4 KB
36-
will be inlined and the rest of files will be processed as usual.
36+
will be inlined and the rest of the files will be processed as usual.
3737

3838
You can also use all the other options supported by the `URL Loader`_. If you
3939
want to disable this loader for either images or fonts, remove the corresponding

0 commit comments

Comments
 (0)