Skip to content

Commit 4d988c7

Browse files
Jaime Terreucarols10cents
Jaime Terreu
authored andcommitted
Improve sentence
1 parent 668c647 commit 4d988c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ch10-03-lifetime-syntax.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The outer scope declares a variable named `r` with no initial value, and the
4444
inner scope declares a variable named `x` with the initial value of 5. Inside
4545
the inner scope, we attempt to set the value of `r` as a reference to `x`. Then
4646
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
47+
compile because what the value `r` is referring to has gone out of scope before we
4848
try to use it. Here is the error message:
4949

5050
```console

0 commit comments

Comments
 (0)