Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/COMMIT_CONVENTION.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ If the commit reverts a previous commit, it should begin with `revert: `, follow

### Type

If the prefix is `feat`, `fix` or `perf`, it will appear in the changelog. However, if there is any [BREAKING CHANGE](#footer), the commit will always appear in the changelog.
If the prefix is `feat`, `fix`, or `perf`, it will appear in the changelog. However, if there is any [BREAKING CHANGE](#footer), the commit will always appear in the changelog.

Other prefixes are up to your discretion. Suggested prefixes are `docs`, `chore`, `style`, `refactor`, and `test` for non-changelog related tasks.

### Scope

The scope could be anything specifying the place of the commit change. For example `core`, `compiler`, `ssr`, `v-model`, `transition` etc...
The scope could be anything specifying the place of the commit change. For example `core`, `compiler`, `ssr`, `v-model`, `transition`, etc...

### Subject

Expand Down
2 changes: 1 addition & 1 deletion examples/todomvc/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Get help from other Vue.js users:
* [Vue.js on Twitter](https://twitter.com/vuejs)
* [Vue.js on Gitter](https://gitter.im/vuejs/vue)

_If you have other helpful links to share, or find any of the links above no longer work, please [let us know](https://github.com/tastejs/todomvc/issues)._
_If you have other helpful links to share or find any of the links above no longer work, please [let us know](https://github.com/tastejs/todomvc/issues)._

## Credit

Expand Down
2 changes: 1 addition & 1 deletion packages/vue-template-compiler/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Note the returned function code uses `with` and thus cannot be used in strict mo
- Type: `boolean`
- Default: `false`

Set this to true will cause the `errors` returned in the compiled result become objects in the form of `{ msg, start, end }`. The `start` and `end` properties are numbers that mark the code range of the error source in the template. This can be passed on to the `compiler.generateCodeFrame` API to generate a code frame for the error.
Setting this to true will cause the `errors` returned in the compiled result to become objects in the form of `{ msg, start, end }`. The `start` and `end` properties are numbers that mark the code range of the error source in the template. This can be passed on to the `compiler.generateCodeFrame` API to generate a code frame for the error.

- `whitespace`
- Type: `string`
Expand Down