Skip to content

Commit 8cae999

Browse files
committed
Fix minor typos in Encore Webpack
1 parent 3581c00 commit 8cae999

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

frontend/encore/advanced-config.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ without using the ``encore`` command you will encounter the following error:
146146
147147
Error: Encore.setOutputPath() cannot be called yet because the runtime environment doesn't appear to be configured. Make sure you're using the encore executable or call Encore.configureRuntimeEnvironment() first if you're purposely not calling Encore directly.
148148
149-
The reason behind that message is that Encore needs to know a few thing before
149+
The reason behind that message is that Encore needs to know a few things before
150150
being able to create a configuration object, the most important one being what
151151
the target environment is.
152152

frontend/encore/faq.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ like ``/myAppSubdir``), you will need to configure that when calling ``Encore.se
7474
+ .setPublicPath('/myAppSubdir/build')
7575
7676
+ // this is now needed so that your manifest.json keys are still `build/foo.js`
77-
+ // (which is a file that's used by Symfony's asset function)
77+
+ // (which is a file that's used by Symfony's `asset()` function)
7878
+ .setManifestKeyPrefix('build')
7979
;
8080

frontend/encore/postcss.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Next, create a ``postcss.config.js`` file at the root of your project:
2424
}
2525
}
2626
27-
Then, Enable the loader in Encore!
27+
Then, enable the loader in Encore!
2828

2929
.. code-block:: diff
3030

0 commit comments

Comments
 (0)