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', },