Skip to content

Commit 9c30394

Browse files
committed
Auto merge of #25835 - steveklabnik:gh25438, r=alexcrichton
Fixes #25438
2 parents a5a5fce + 4db7e56 commit 9c30394

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/doc/trpl/lifetimes.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ x: &'a i32,
134134
# }
135135
```
136136

137-
uses it. So why do we need a lifetime here? We need to ensure that any reference
138-
to a `Foo` cannot outlive the reference to an `i32` it contains.
137+
uses it. So why do we need a lifetime here? We need to ensure that any
138+
reference to the contained `i32` does not outlive the containing `Foo`.
139139

140140
## Thinking in scopes
141141

0 commit comments

Comments
 (0)