From b8ddb123de5bbcb183682e0d3b472283e6d599e9 Mon Sep 17 00:00:00 2001 From: dbale-altoros Date: Tue, 31 Dec 2024 13:36:10 -0300 Subject: [PATCH] fix: other typos --- docs/shareable-configs.md | 2 +- lib/rules/naming/var-name-mixedcase.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/shareable-configs.md b/docs/shareable-configs.md index 8e9edd27..693ab917 100644 --- a/docs/shareable-configs.md +++ b/docs/shareable-configs.md @@ -8,7 +8,7 @@ To use a shareable config, you have to add it to your Solhint configuration: "extends": ["solhint:recommended", "protofire"] ``` -This example shows the two kind of shareable configs that you can use: the ones included with Solhint, that start with `solhint:`, and the ones that you can install from npm. The latter are packages that are prefixed with `solhint-config-`, so in this case the package would be installed doing `npm install solhint-config-protofire` but used as just `protofire` when adding it. +This example shows the two types of shareable configs that you can use: the ones included with Solhint, that start with `solhint:`, and the ones that you can install from npm. The latter are packages that are prefixed with `solhint-config-`, so in this case the package would be installed doing `npm install solhint-config-protofire` but used as just `protofire` when adding it. ## Creating your own shareable config diff --git a/lib/rules/naming/var-name-mixedcase.js b/lib/rules/naming/var-name-mixedcase.js index 3e9581c3..66d18e18 100644 --- a/lib/rules/naming/var-name-mixedcase.js +++ b/lib/rules/naming/var-name-mixedcase.js @@ -6,7 +6,7 @@ const meta = { type: 'naming', docs: { - description: `Variable name must be in mixedCase. (Does not check IMMUTABLES, use immutable-vars-naming)`, + description: `Variable names must be in mixedCase. (Does not check IMMUTABLES, use immutable-vars-naming)`, category: 'Style Guide Rules', },