Skip to content

Commit c2f3338

Browse files
armano2michalsnik
authored andcommitted
Correct spelling in docs & add missing links (#61)
1 parent 8f5e2e8 commit c2f3338

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

docs/rules/html-quotes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Enforce quotes style of HTML attributes (html-quotes)
22

3-
You can shoose quotes of HTML attributes from:
3+
You can choose quotes of HTML attributes from:
44

55
- Double quotes: `<div class="foo">`
66
- Single quotes: `<div class='foo'>`

docs/rules/no-invalid-v-else.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,10 @@ Nothing.
4242
## 👫 Related rules
4343

4444
- [no-invalid-v-if]
45-
- [no-invalid-v-else]
45+
- [no-invalid-v-else-if]
46+
- [no-parsing-error]
4647

4748

48-
[no-invalid-v-if]: no-invalid-v-if.md
49-
[no-invalid-v-else]: no-invalid-v-else.md
49+
[no-invalid-v-if]: no-invalid-v-if.md
50+
[no-invalid-v-else-if]: no-invalid-v-else-if.md
51+
[no-parsing-error]: no-parsing-error.md

docs/rules/no-invalid-v-for.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This rule reports `v-for` directives in the following cases:
1212
- If the element which has the directive is a custom component, the component does not have `v-bind:key` directive. E.g. `<your-component v-for="item in list"></your-component>`
1313
- The `v-bind:key` directive does not use the variables which are defined by the `v-for` directive. E.g. `<div v-for="x in list" :key="foo"></div>`
1414

15-
If the element which has the directive is a reserved element, this rule does not report even if the element does not have `v-bind:key` directive because it's not faital error. [require-v-for-key] rule reports it.
15+
If the element which has the directive is a reserved element, this rule does not report even if the element does not have `v-bind:key` directive because it's not fatal error. [require-v-for-key] rule reports it.
1616

1717
This rule does not check syntax errors in directives. [no-parsing-error] rule reports it.
1818
The following cases are syntax errors:
@@ -57,4 +57,5 @@ Nothing.
5757
- [no-parsing-error]
5858

5959

60-
[no-parsing-error]: no-parsing-error.md
60+
[require-v-for-key]: require-v-for-key.md
61+
[no-parsing-error]: no-parsing-error.md

0 commit comments

Comments
 (0)