We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edd0e4f commit 2a0a414Copy full SHA for 2a0a414
frontend/encore/simple-example.rst
@@ -99,7 +99,7 @@ In Symfony, use the ``asset()`` helper:
99
Requiring JavaScript Modules
100
----------------------------
101
102
-Webpack is module bundler... which means that you can ``require`` other JavaScript
+Webpack is a module bundler... which means that you can ``require`` other JavaScript
103
files. First, create a file that exports a function:
104
105
.. code-block:: javascript
@@ -128,7 +128,7 @@ Great! Use ``require()`` to import ``jquery`` and ``greet.js``:
128
// ./ (or ../) means to look for a local file
129
var greet = require('./greet');
130
131
- $(document).ready(function()) {
+ $(document).ready(function() {
132
$('h1').html(greet());
133
});
134
0 commit comments