We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe6227e commit 2747c4bCopy full SHA for 2747c4b
src/lifetimes.md
@@ -224,8 +224,8 @@ are too dumb.
224
## The area covered by a lifetime
225
226
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.
+created to its last use. The borrowed value needs to outlive only borrows that
+are alive. This looks simple, but there are a few subtleties.
229
230
The following snippet compiles, because after printing `x`, it is no longer
231
needed, so it doesn't matter if it is dangling or aliased (even though the
0 commit comments