Skip to content

Commit f820dc8

Browse files
committed
Fixup some inconsistent whitespace
1 parent 7275d3d commit f820dc8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/librustc_typeck/diagnostics.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1390,8 +1390,7 @@ enum Bar { A(u8), B(&bool), } // error
13901390
enum Bar<'a> { A(u8), B(&'a bool), } // correct
13911391
13921392
type MyStr = &str; // error
1393-
type MyStr<'a> = &'a str; //correct
1394-
1393+
type MyStr<'a> = &'a str; // correct
13951394
```
13961395
13971396
Lifetime elision is a special, limited kind of inference for lifetimes in

0 commit comments

Comments
 (0)