Skip to content

Commit 2747c4b

Browse files
authored
Clarify a bit of wording (#310)
1 parent fe6227e commit 2747c4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lifetimes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,8 +224,8 @@ are too dumb.
224224
## The area covered by a lifetime
225225

226226
A reference (sometimes called a *borrow*) is *alive* from the place it is
227-
created to its last use. The borrowed thing needs to outlive only borrows that
228-
are alive. This looks simple, but there are few subtleties.
227+
created to its last use. The borrowed value needs to outlive only borrows that
228+
are alive. This looks simple, but there are a few subtleties.
229229

230230
The following snippet compiles, because after printing `x`, it is no longer
231231
needed, so it doesn't matter if it is dangling or aliased (even though the

0 commit comments

Comments
 (0)