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

Commit

Permalink
Merge pull request #162 from edwardkenfox/fix-typo-in-readme
Browse files Browse the repository at this point in the history
Fix typos in README
  • Loading branch information
kazupon committed Mar 1, 2016
2 parents cc5e5d6 + 41255fd commit 54984d7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ Checkbox validation supports lengths:
<label for="apple">Apple</label>
<input id="orange" type="checkbox" value="orange" v-validate:fruits>
<label for="orange">Orage</label>
<input id="grape" type="checkbox" value="grage" v-validate:fruits>
<input id="grape" type="checkbox" value="grape" v-validate:fruits>
<label for="grape">Grape</label>
<input id="banana" type="checkbox" value="banana" v-validate:fruits>
<label for="banana">Banana</label>
Expand Down Expand Up @@ -477,7 +477,7 @@ new Vue({
<label for="apple">Apple</label>
<input id="orange" type="radio" name="fruit" value="orange" v-validate:fruits>
<label for="orange">Orage</label>
<input id="grape" type="radio" name="fruit" value="grage" v-validate:fruits>
<input id="grape" type="radio" name="fruit" value="grape" v-validate:fruits>
<label for="grape">Grape</label>
<input id="banana" type="radio" name="fruit" value="banana" v-validate:fruits>
<label for="banana">Banana</label>
Expand Down Expand Up @@ -803,7 +803,7 @@ Sometimes, you need to manually set the validation error message such as server-

- **Arguments:**
- `Array<Object>` errors
- `{String}` feild
- `{String}` field
- `{String}` message
- `{String}` validator [optional]

Expand Down Expand Up @@ -888,7 +888,7 @@ Sometimes, you need to manually set the validation error message such as server-

- **Argument: field**

To detect as validation feild error, you need to pass in `field` argument.
To detect as validation field error, you need to pass in `field` argument.

- **Argument: message**

Expand Down

0 comments on commit 54984d7

Please sign in to comment.