]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/src/docs/many_single_char_names.txt
Rollup merge of #101189 - daxpedda:ready-into-inner, r=joshtriplett
[rust.git] / src / tools / clippy / src / docs / many_single_char_names.txt
1 ### What it does
2 Checks for too many variables whose name consists of a
3 single character.
4
5 ### Why is this bad?
6 It's hard to memorize what a variable means without a
7 descriptive name.
8
9 ### Example
10 ```
11 let (a, b, c, d, e, f, g) = (...);
12 ```