diff --git a/public/docs/ts/latest/guide/webpack.jade b/public/docs/ts/latest/guide/webpack.jade index f39175d7c0..5c9bedafb5 100644 --- a/public/docs/ts/latest/guide/webpack.jade +++ b/public/docs/ts/latest/guide/webpack.jade @@ -256,7 +256,7 @@ a(id="commons-chunk-plugin") We want the `app.js` bundle to contain only app code and the `vendor.js` bundle to contain only the vendor code. - Our application code `imports` vendor code. Webpack is not smart to keep the vendor code out of the `app.js` bundle. + Our application code `imports` vendor code. Webpack is not smart enough to keep the vendor code out of the `app.js` bundle. We rely on the `CommonsChunkPlugin` to do that job. .l-sub-section :marked