Skip to content

Commit c41cb85

Browse files
author
dbale-altoros
committed
fix: other typos
1 parent b8ddb12 commit c41cb85

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/rules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ title: "Rule Index of Solhint"
4141
| [named-parameters-mapping](./rules/naming/named-parameters-mapping.md) | Solidity v0.8.18 introduced named parameters on the mappings definition. | | |
4242
| [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 | | |
4343
| [use-forbidden-name](./rules/naming/use-forbidden-name.md) | Avoid to use letters 'I', 'l', 'O' as identifiers. | $~~~~~~~~$✔️ | |
44-
| [var-name-mixedcase](./rules/naming/var-name-mixedcase.md) | Variable name must be in mixedCase. (Does not check IMMUTABLES, use immutable-vars-naming) | $~~~~~~~~$✔️ | |
44+
| [var-name-mixedcase](./rules/naming/var-name-mixedcase.md) | Variable names must be in mixedCase. (Does not check IMMUTABLES, use immutable-vars-naming) | $~~~~~~~~$✔️ | |
4545
| [func-order](./rules/order/func-order.md) | Function order is incorrect. | | $~~~~~~~$✔️ |
4646
| [imports-on-top](./rules/order/imports-on-top.md) | Import statements must be on top. | $~~~~~~~~$✔️ | |
4747
| [ordering](./rules/order/ordering.md) | Check order of elements in file and inside each contract, according to the style guide. | | |

docs/rules/naming/var-name-mixedcase.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ title: "var-name-mixedcase | Solhint"
1212
1313

1414
## Description
15-
Variable name must be in mixedCase. (Does not check IMMUTABLES, use immutable-vars-naming)
15+
Variable names must be in mixedCase. (Does not check IMMUTABLES, use immutable-vars-naming)
1616

1717
## Options
1818
This rule accepts a string option of rule severity. Must be one of "error", "warn", "off". Defaults to warn.

0 commit comments

Comments
 (0)