Skip to content

Commit f4dc6c7

Browse files
committed
Rollup merge of #28655 - alfiedotwtf:patch-2, r=sanxiyn
2 parents 8b85b57 + 29048c3 commit f4dc6c7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/doc/trpl/lifetimes.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -349,9 +349,9 @@ fn frob<'a, 'b>(s: &'a str, t: &'b str) -> &str; // Expanded: Output lifetime is
349349
fn get_mut(&mut self) -> &mut T; // elided
350350
fn get_mut<'a>(&'a mut self) -> &'a mut T; // expanded
351351
352-
fn args<T:ToCStr>(&mut self, args: &[T]) -> &mut Command // elided
353-
fn args<'a, 'b, T:ToCStr>(&'a mut self, args: &'b [T]) -> &'a mut Command // expanded
352+
fn args<T:ToCStr>(&mut self, args: &[T]) -> &mut Command; // elided
353+
fn args<'a, 'b, T:ToCStr>(&'a mut self, args: &'b [T]) -> &'a mut Command; // expanded
354354
355355
fn new(buf: &mut [u8]) -> BufWriter; // elided
356-
fn new<'a>(buf: &'a mut [u8]) -> BufWriter<'a> // expanded
356+
fn new<'a>(buf: &'a mut [u8]) -> BufWriter<'a>; // expanded
357357
```

0 commit comments

Comments
 (0)