We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4f66d88 + 23ec007 commit 4233cbdCopy full SHA for 4233cbd
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