Skip to content

Commit 73d1286

Browse files
Merge pull request #35 from rust-lang-nursery/Centril-patch-1
Split line to avoid scrollbar in guide
2 parents c6b0d6e + 60d66e5 commit 73d1286

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/2018/transitioning/ownership-and-lifetimes/lifetime-elision-in-impl.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ To show off how this combines with in-band lifetimes in methods/functions, in Ru
2929
impl<'a> MyStruct<'a> {
3030
fn foo(&self) -> &'a str
3131
32-
// we have to use 'b here because it conflicts with the 'a above. If this weren't part
33-
// of an `impl`, we'd be using `'a`.
32+
// we have to use 'b here because it conflicts with the 'a above.
33+
// If this weren't part of an `impl`, we'd be using `'a`.
3434
fn bar<'b>(&self, arg: &'b str) -> &'b str
3535
}
3636
```

0 commit comments

Comments
 (0)