We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7284d09 commit 0904427Copy full SHA for 0904427
src/borrow-splitting.md
@@ -1,10 +1,10 @@
1
# Splitting Borrows
2
3
The mutual exclusion property of mutable references can be very limiting when
4
-working with a composite structure. The borrow checker understands some basic
5
-stuff, but will fall over pretty easily. It does understand structs
6
-sufficiently to know that it's possible to borrow disjoint fields of a struct
7
-simultaneously. So this works today:
+working with a composite structure. The borrow checker (a.k.a. borrowck)
+understands some basic stuff, but will fall over pretty easily. It does
+understand structs sufficiently to know that it's possible to borrow disjoint
+fields of a struct simultaneously. So this works today:
8
9
```rust
10
struct Foo {
0 commit comments