Skip to content

Commit 742f4bc

Browse files
Remove unneeded indentation
1 parent b12bb12 commit 742f4bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/librustc_typeck/diagnostics.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ impl Test {
223223
224224
fn main() {
225225
let x = Test;
226-
226+
227227
x.method::<i32>(); // Error: Test::method doesn't need type parameter!
228228
}
229229
```
@@ -239,7 +239,7 @@ impl Test {
239239
240240
fn main() {
241241
let x = Test;
242-
242+
243243
x.method(); // OK, we're good!
244244
}
245245
```

0 commit comments

Comments
 (0)