Skip to content

Commit 838c5bb

Browse files
committed
[fix] Fixing misspelled language and adding missing commas
1 parent 5a2e228 commit 838c5bb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/concepts/targets.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ For example, when you use the `electron-main` _target_, *webpack* includes multi
4545
Although webpack does **not** support multiple strings being passed into the `target` property, you can create an isomorphic library by bundling two separate configurations:
4646

4747
**webpack.config.js**
48-
```javascriptis
48+
```javascript
4949

5050
module.exports = [ serverConfig, clientConfig ];
5151

@@ -59,9 +59,9 @@ var serverConfig = {
5959
}
6060

6161
var clientConfig = {
62-
target: 'web' // <=== can be omitted as default is 'web'
62+
target: 'web', // <=== can be omitted as default is 'web'
6363
output: {
64-
path: 'dist'
64+
path: 'dist',
6565
filename: 'lib.js'
6666
}
6767
//...

0 commit comments

Comments
 (0)