summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/src/docs/many_single_char_names.txt
blob: 55ee5da5557443219b0f2a48a85f71d01af4c5f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
### What it does
Checks for too many variables whose name consists of a
single character.

### Why is this bad?
It's hard to memorize what a variable means without a
descriptive name.

### Example
```
let (a, b, c, d, e, f, g) = (...);
```