From 2556ca21b3472364db97a94ad6b99c9634c02ea6 Mon Sep 17 00:00:00 2001 From: Ruslan Gunawardana Date: Sun, 26 Aug 2018 11:27:30 +0300 Subject: [PATCH] Fixed typo in v-html rule description According to OWASP shorthand XSS stands for Cross-Site Scripting: https://www.owasp.org/index.php/Cross-site_Scripting_(XSS) --- docs/rules/no-v-html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/no-v-html.md b/docs/rules/no-v-html.md index a5494a2fc..d5e82d17f 100644 --- a/docs/rules/no-v-html.md +++ b/docs/rules/no-v-html.md @@ -2,7 +2,7 @@ - :gear: This rule is included in `"plugin:vue/recommended"`. -This rule reports use of `v-html` directive in order to reduce the risk of injecting potentially unsafe / unescaped html into the browser leading to Cross Side Scripting (XSS) attacks. +This rule reports use of `v-html` directive in order to reduce the risk of injecting potentially unsafe / unescaped html into the browser leading to Cross-Site Scripting (XSS) attacks. ## :book: Rule Details