summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/src/docs/large_digit_groups.txt
blob: f60b19345af44e86e6f74564c80d17d654f9311b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
### What it does
Warns if the digits of an integral or floating-point
constant are grouped into groups that
are too large.

### Why is this bad?
Negatively impacts readability.

### Example
```
let x: u64 = 6186491_8973511;
```