We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8497979 commit faf63edCopy full SHA for faf63ed
tests/ui/literals.stderr
@@ -25,7 +25,7 @@ LL | let fail_multi_zero = 000_123usize;
25
| ^^^^^^^^^^^^
26
|
27
= note: `-D clippy::zero-prefixed-literal` implied by `-D warnings`
28
-help: if you mean to use a decimal constant, remove the `0` to remove confusion
+help: if you mean to use a decimal constant, remove the `0` to avoid confusion
29
30
LL | let fail_multi_zero = 123usize;
31
| ^^^^^^^^
@@ -39,7 +39,7 @@ error: this is a decimal constant
39
40
LL | let fail8 = 0123;
41
| ^^^^
42
43
44
LL | let fail8 = 123;
45
| ^^^
0 commit comments