File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,6 @@ fn main() {
55 -x;
66 -( -x) ;
77 --x;
8- //~^ ERROR: `--x` could be misinterpreted as pre-decrement by C programmers, is usuall
8+ //~^ ERROR: `--x` could be misinterpreted as pre-decrement by C programmers, is usually
99 //~| NOTE: `-D clippy::double-neg` implied by `-D warnings`
1010}
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ fn can_break_both_inner_and_outer(cond: bool) {
137137}
138138
139139fn break_wrong_loop ( cond : bool ) {
140- // 'inner has statement to break 'outer loop, but it was breaked early by a labeled child loop
140+ // 'inner has statement to break 'outer loop, but it was broken out of early by a labeled child loop
141141 ' outer: loop {
142142 loop {
143143 //~^ ERROR: infinite loop detected
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ fn main() {
5959 let _ = x;
6060 }
6161
62- // shouldnt fire
62+ // shouldn't fire
6363 for x in & vec {
6464 let _ = x;
6565 }
You can’t perform that action at this time.
0 commit comments