diff --git a/docs/rules/naming/var-name-mixedcase.md b/docs/rules/naming/var-name-mixedcase.md index fe391e35..5983f5ea 100644 --- a/docs/rules/naming/var-name-mixedcase.md +++ b/docs/rules/naming/var-name-mixedcase.md @@ -12,7 +12,7 @@ title: "var-name-mixedcase | Solhint" ## Description -Variable name must be in mixedCase. (Does not check IMMUTABLES, use immutable-vars-naming) +Variable names must be in mixedCase. (Does not check IMMUTABLES, use immutable-vars-naming) ## Options This rule accepts a string option of rule severity. Must be one of "error", "warn", "off". Defaults to warn. diff --git a/docs/shareable-configs.md b/docs/shareable-configs.md index 8e9edd27..10058e98 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 kinds 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