1
0
mirror of https://github.com/mgechev/revive.git synced 2024-11-21 17:16:40 +02:00

docs: lowercase arguments for consistency

This commit is contained in:
Oleksandr Redko 2024-11-13 16:55:26 +02:00 committed by chavacava
parent 8c274eb700
commit 0789e36cd9

View File

@ -947,7 +947,7 @@ _Configuration_: Supports arguments with single of `map[string]any` with option
```toml
[rule.unused-parameter]
Arguments = [{ allowRegex = "^_" }]
arguments = [{ allowRegex = "^_" }]
```
allows any names started with `_`, not just `_` itself:
@ -964,7 +964,7 @@ _Configuration_: Supports arguments with single of `map[string]any` with option
```toml
[rule.unused-receiver]
Arguments = [{ allowRegex = "^_" }]
arguments = [{ allowRegex = "^_" }]
```
allows any names started with `_`, not just `_` itself: