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.
2 parents 8a8583c + 09a473e commit 6f2a069Copy full SHA for 6f2a069
src/doc/trpl/references-and-borrowing.md
@@ -297,7 +297,7 @@ We can’t modify `v` because it’s borrowed by the loop.
297
References must live as long as the resource they refer to. Rust will check the
298
scopes of your references to ensure that this is true.
299
300
-If Rust didn’t check that this property, we could accidentally use a reference
+If Rust didn’t check this property, we could accidentally use a reference
301
which was invalid. For example:
302
303
```rust,ignore
0 commit comments