From c41cb8593dfae0e4acb4d2e6270a80da83f41e00 Mon Sep 17 00:00:00 2001 From: dbale-altoros Date: Tue, 31 Dec 2024 13:36:26 -0300 Subject: [PATCH] fix: other typos --- docs/rules.md | 2 +- docs/rules/naming/var-name-mixedcase.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/rules.md b/docs/rules.md index 67faacb6..aa04fbab 100644 --- a/docs/rules.md +++ b/docs/rules.md @@ -41,7 +41,7 @@ title: "Rule Index of Solhint" | [named-parameters-mapping](./rules/naming/named-parameters-mapping.md) | Solidity v0.8.18 introduced named parameters on the mappings definition. | | | | [private-vars-leading-underscore](./rules/naming/private-vars-leading-underscore.md) | Non-external functions and state variables should start with a single underscore. Others, shouldn't | | | | [use-forbidden-name](./rules/naming/use-forbidden-name.md) | Avoid to use letters 'I', 'l', 'O' as identifiers. | $~~~~~~~~$✔️ | | -| [var-name-mixedcase](./rules/naming/var-name-mixedcase.md) | Variable name must be in mixedCase. (Does not check IMMUTABLES, use immutable-vars-naming) | $~~~~~~~~$✔️ | | +| [var-name-mixedcase](./rules/naming/var-name-mixedcase.md) | Variable names must be in mixedCase. (Does not check IMMUTABLES, use immutable-vars-naming) | $~~~~~~~~$✔️ | | | [func-order](./rules/order/func-order.md) | Function order is incorrect. | | $~~~~~~~$✔️ | | [imports-on-top](./rules/order/imports-on-top.md) | Import statements must be on top. | $~~~~~~~~$✔️ | | | [ordering](./rules/order/ordering.md) | Check order of elements in file and inside each contract, according to the style guide. | | | 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.