summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/src/docs/separated_literal_suffix.txt
blob: 226a6b8a98766da0de8855d7d786a847f51269a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
### What it does
Warns if literal suffixes are separated by an underscore.
To enforce separated literal suffix style,
see the `unseparated_literal_suffix` lint.

### Why is this bad?
Suffix style should be consistent.

### Example
```
123832_i32
```

Use instead:
```
123832i32
```