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 6140a20 commit ae31b5eCopy full SHA for ae31b5e
src/doc/trpl/references-and-borrowing.md
@@ -206,7 +206,7 @@ fn main() {
206
^
207
```
208
209
-In other words, the mutable borow is held through the rest of our example. What
+In other words, the mutable borrow is held through the rest of our example. What
210
we want is for the mutable borrow to end _before_ we try to call `println!` and
211
make an immutable borrow. In Rust, borrowing is tied to the scope that the
212
borrow is valid for. And our scopes look like this:
0 commit comments