diff --git a/docs/rules/no-confusing-v-for-v-if.md b/docs/rules/no-confusing-v-for-v-if.md index aff05acdc..3415520e8 100644 --- a/docs/rules/no-confusing-v-for-v-if.md +++ b/docs/rules/no-confusing-v-for-v-if.md @@ -8,7 +8,7 @@ So when they exist on the same node, `v-if` directive should use the reference w ## 📖 Rule Details -This rule reports the elements which have both `v-for` and `v-if` directives if the following cases: +This rule reports the elements which have both `v-for` and `v-if` directives in the following cases: - The `v-if` directive does not use the reference which is to the variables which are defined by the `v-for` directives. diff --git a/docs/rules/no-invalid-template-root.md b/docs/rules/no-invalid-template-root.md index aa8c40d43..15f4a6d6e 100644 --- a/docs/rules/no-invalid-template-root.md +++ b/docs/rules/no-invalid-template-root.md @@ -4,16 +4,21 @@ This rule checks whether every template root is valid. ## 📖 Rule Details -This rule reports the template root if the following cases: +This rule reports the template root in the following cases: +- The root is nothing. E.g. ``. - The root is text. E.g. ``. - The root is multiple elements. E.g. ``. - The root element has `v-for` directives. E.g. ``. -- The root element has `v-if`/`v-else-if` directives without `v-else` elements. E.g. ``. - The root element is `