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 668c647 commit 4d988c7Copy full SHA for 4d988c7
src/ch10-03-lifetime-syntax.md
@@ -44,7 +44,7 @@ The outer scope declares a variable named `r` with no initial value, and the
44
inner scope declares a variable named `x` with the initial value of 5. Inside
45
the inner scope, we attempt to set the value of `r` as a reference to `x`. Then
46
the inner scope ends, and we attempt to print the value in `r`. This code won’t
47
-compile because the value `r` is referring to has gone out of scope before we
+compile because what the value `r` is referring to has gone out of scope before we
48
try to use it. Here is the error message:
49
50
```console
0 commit comments