Skip to content

Commit b94b0de

Browse files
committed
docs(scaffolding): fix typos
1 parent 6b79072 commit b94b0de

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

SCAFFOLDING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Introduction
22

3-
Setting up webpack for the first time is hard. Writing advanced configurations to optimize performance is even harder. The `init` feature is designed to support people that want to create their own configuration or initializing other projects people create.
3+
Setting up Webpack for the first time is hard. Writing advanced configurations to optimize performance is even harder. The `init` feature is designed to support people that want to create their own configuration or initializing other projects people create.
44

55
## Creating a scaffold
66

@@ -60,7 +60,7 @@ webpack-cli init webpack-scaffold-yourpackage
6060

6161
## API
6262

63-
To create a `scaffold`, you must create a [`yeoman-generator`](http://yeoman.io/authoring/). Because of that, you can optionally extend your generator to include methods from the [Yeoman API](http://yeoman.io/learning/). It's worth noting that we support all the properties of a regular webpack configuration. In order for us to do this, there's a thing you need to remember:
63+
To create a `scaffold`, you must create a [`yeoman-generator`](http://yeoman.io/authoring/). Because of that, you can optionally extend your generator to include methods from the [Yeoman API](http://yeoman.io/learning/). It's worth noting that we support all the properties of a regular Webpack configuration. In order for us to do this, there's a thing you need to remember:
6464

6565
> Objects are made using strings, while strings are made using double strings. This means that in order for you to create a string, you have to wrap it inside another string for us to validate it correctly.
6666
@@ -101,7 +101,7 @@ constructor(args, opts) {
101101

102102
### `myObj.webpackOptions` (required)
103103

104-
This object has the same format as a regular Webpack configuration, so you declare here the properties that you want to scaffold, like `entry`, `output` and `context`. You can intialize this inside a yeoman method:
104+
This object has the same format as a regular Webpack configuration, so you declare here the properties that you want to scaffold, like `entry`, `output` and `context`. You can initialize this inside a yeoman method:
105105

106106
```js
107107
this.options.env.configuration.dev.webpackOptions = {

0 commit comments

Comments
 (0)