Skip to content
This repository was archived by the owner on Dec 25, 2017. It is now read-only.

Commit 93569c0

Browse files
committed
Merge branch 'master' of github.com:vuejs/vue-validator
2 parents a9ed4ae + adb206c commit 93569c0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/en/errors.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Also, Error message can be used with `v-for`:
4343
<div class="errors">
4444
<ul>
4545
<li v-for="error in $validation1.errors">
46-
<p>{{error.field}}: {{error.mesage}}</p>
46+
<p>{{error.field}}: {{error.message}}</p>
4747
</li>
4848
</ul>
4949
</div>

docs/en/events.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ new Vue({
7272

7373
You can be handled the event that has occured in the various top-level validation properties:
7474

75-
- `valid`: occure when validation result of **top-level** became valid
76-
- `invalid`: occure when validation result of **top-level** became invalid
77-
- `touched`: occure when **top-level** detected `blur` at least once
78-
- `dirty`: occure when the value of **top-level** changed from initial value at least once
79-
- `modified`: occure when the value of **top-level** changed from initial value
75+
- `valid`: occurs when validation result of **top-level** became valid
76+
- `invalid`: occurs when validation result of **top-level** became invalid
77+
- `touched`: occurs when **top-level** detected `blur` at least once
78+
- `dirty`: occurs when the value of **top-level** changed from initial value at least once
79+
- `modified`: occurs when the value of **top-level** changed from initial value
8080

8181
```html
8282
<div id="app">

0 commit comments

Comments
 (0)