mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 13:13:34 +00:00
Update int_plus_one suggestion text
This is now in line with the recommendations from here: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_errors/struct.Diagnostic.html#method.span_suggestion
This commit is contained in:
parent
31cf2f2f35
commit
f41677902d
2 changed files with 5 additions and 21 deletions
|
@ -158,7 +158,7 @@ impl IntPlusOne {
|
|||
|db| {
|
||||
db.span_suggestion(
|
||||
block.span,
|
||||
"change `>= y + 1` to `> y` as shown",
|
||||
"change it to",
|
||||
recommendation,
|
||||
Applicability::MachineApplicable, // snippet
|
||||
);
|
||||
|
|
|
@ -2,43 +2,27 @@ error: Unnecessary `>= y + 1` or `x - 1 >=`
|
|||
--> $DIR/int_plus_one.rs:9:13
|
||||
|
|
||||
LL | let _ = x >= y + 1;
|
||||
| ^^^^^^^^^^
|
||||
| ^^^^^^^^^^ help: change it to: `x > y`
|
||||
|
|
||||
= note: `-D clippy::int-plus-one` implied by `-D warnings`
|
||||
help: change `>= y + 1` to `> y` as shown
|
||||
|
|
||||
LL | let _ = x > y;
|
||||
| ^^^^^
|
||||
|
||||
error: Unnecessary `>= y + 1` or `x - 1 >=`
|
||||
--> $DIR/int_plus_one.rs:10:13
|
||||
|
|
||||
LL | let _ = y + 1 <= x;
|
||||
| ^^^^^^^^^^
|
||||
help: change `>= y + 1` to `> y` as shown
|
||||
|
|
||||
LL | let _ = y < x;
|
||||
| ^^^^^
|
||||
| ^^^^^^^^^^ help: change it to: `y < x`
|
||||
|
||||
error: Unnecessary `>= y + 1` or `x - 1 >=`
|
||||
--> $DIR/int_plus_one.rs:12:13
|
||||
|
|
||||
LL | let _ = x - 1 >= y;
|
||||
| ^^^^^^^^^^
|
||||
help: change `>= y + 1` to `> y` as shown
|
||||
|
|
||||
LL | let _ = x > y;
|
||||
| ^^^^^
|
||||
| ^^^^^^^^^^ help: change it to: `x > y`
|
||||
|
||||
error: Unnecessary `>= y + 1` or `x - 1 >=`
|
||||
--> $DIR/int_plus_one.rs:13:13
|
||||
|
|
||||
LL | let _ = y <= x - 1;
|
||||
| ^^^^^^^^^^
|
||||
help: change `>= y + 1` to `> y` as shown
|
||||
|
|
||||
LL | let _ = y < x;
|
||||
| ^^^^^
|
||||
| ^^^^^^^^^^ help: change it to: `y < x`
|
||||
|
||||
error: aborting due to 4 previous errors
|
||||
|
||||
|
|
Loading…
Reference in a new issue