mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
chore: fix some comments
Signed-off-by: VitalikButerinEth <csyingyu@126.com>
This commit is contained in:
parent
da4b2127c0
commit
b92501f124
3 changed files with 3 additions and 3 deletions
|
@ -5,6 +5,6 @@ fn main() {
|
|||
-x;
|
||||
-(-x);
|
||||
--x;
|
||||
//~^ ERROR: `--x` could be misinterpreted as pre-decrement by C programmers, is usuall
|
||||
//~^ ERROR: `--x` could be misinterpreted as pre-decrement by C programmers, is usually
|
||||
//~| NOTE: `-D clippy::double-neg` implied by `-D warnings`
|
||||
}
|
||||
|
|
|
@ -137,7 +137,7 @@ fn can_break_both_inner_and_outer(cond: bool) {
|
|||
}
|
||||
|
||||
fn break_wrong_loop(cond: bool) {
|
||||
// 'inner has statement to break 'outer loop, but it was breaked early by a labeled child loop
|
||||
// 'inner has statement to break 'outer loop, but it was broken out of early by a labeled child loop
|
||||
'outer: loop {
|
||||
loop {
|
||||
//~^ ERROR: infinite loop detected
|
||||
|
|
|
@ -59,7 +59,7 @@ fn main() {
|
|||
let _ = x;
|
||||
}
|
||||
|
||||
// shouldnt fire
|
||||
// shouldn't fire
|
||||
for x in &vec {
|
||||
let _ = x;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue