]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/src/docs/separated_literal_suffix.txt
Auto merge of #104673 - matthiaskrgr:rollup-85f65ov, r=matthiaskrgr
[rust.git] / src / tools / clippy / src / docs / separated_literal_suffix.txt
1 ### What it does
2 Warns if literal suffixes are separated by an underscore.
3 To enforce separated literal suffix style,
4 see the `unseparated_literal_suffix` lint.
5
6 ### Why is this bad?
7 Suffix style should be consistent.
8
9 ### Example
10 ```
11 123832_i32
12 ```
13
14 Use instead:
15 ```
16 123832i32
17 ```