Skip to content

Commit 0995c62

Browse files
tshepangmark-i-m
authored andcommitted
immutable was meant here (rust-lang#435)
1 parent da398c1 commit 0995c62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/borrow_check.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ enforcing a number of properties:
88
- That you can't move a value while it is borrowed.
99
- That you can't access a place while it is mutably borrowed (except through
1010
the reference).
11-
- That you can't mutate a place while it is shared or borrowed.
11+
- That you can't mutate a place while it is immutably borrowed.
1212
- etc
1313

1414
At the time of this writing, the code is in a state of transition. The

0 commit comments

Comments
 (0)