From 7a7cb4c87665ebbc4f66e64ff26d0653b1ed5f82 Mon Sep 17 00:00:00 2001 From: Quentin Dreyer Date: Mon, 24 Sep 2018 17:19:18 +0200 Subject: [PATCH] chore(typo): rename varoious to various inside comment --- lib/rules/no-unused-components.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rules/no-unused-components.js b/lib/rules/no-unused-components.js index aff3743b2..64c77291b 100644 --- a/lib/rules/no-unused-components.js +++ b/lib/rules/no-unused-components.js @@ -72,7 +72,7 @@ module.exports = { registeredComponents .filter(({ name }) => { // If the component name is PascalCase - // it can be used in varoious of ways inside template, + // it can be used in various of ways inside template, // like "theComponent", "The-component" etc. // but except snake_case if (casing.pascalCase(name) === name) {