Skip to content

Commit 17351f5

Browse files
sjkingchrisvfritz
authored andcommitted
Fix some typos in docs (vuejs-templates#331)
1 parent 8eb7e1c commit 17351f5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/env.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ As we can see, `test.env` inherits the `dev.env` and the `dev.env` inherits the
4444

4545
### Usage
4646

47-
It is simple to use the environment variables to your code. For example:
47+
It is simple to use the environment variables in your code. For example:
4848

4949
```js
5050
Vue.config.debug = process.env.DEBUG_MODE

docs/static.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Since these assets may be inlined/copied/renamed during build, they are essentia
1212

1313
### Asset Resolving Rules
1414

15-
- **Relative URLs**, e.g. `./assets/logo.png` will be interpreted as a module dependency. They will be replaced with a auto-generated URL based on your Webpack output configuration.
15+
- **Relative URLs**, e.g. `./assets/logo.png` will be interpreted as a module dependency. They will be replaced with an auto-generated URL based on your Webpack output configuration.
1616

1717
- **Non-prefixed URLs**, e.g. `assets/logo.png` will be treated the same as the relative URLs and translated into `./assets/logo.png`.
1818

docs/structure.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Contains e2e test related files. See [End-to-end Testing](e2e.md) for more detai
6060

6161
### `index.html`
6262

63-
This is the **template** `index.html` for our single page application. During development and builds, Webpack will generate assets, and the URLs for those generated assets will automatically injected into this template to render the final HTML.
63+
This is the **template** `index.html` for our single page application. During development and builds, Webpack will generate assets, and the URLs for those generated assets will be automatically injected into this template to render the final HTML.
6464

6565
### `package.json`
6666

docs/unit.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ And the files:
1414

1515
- `index.js`
1616

17-
This the entry file used by `karma-webpack` to bundle all the test code and source code (for coverage purposes). You can ignore it for the most part.
17+
This is the entry file used by `karma-webpack` to bundle all the test code and source code (for coverage purposes). You can ignore it for the most part.
1818

1919
- `specs/`
2020

0 commit comments

Comments
 (0)