TRPL: Fix a broken link to 'borrowing'

This commit is contained in:
olombard 2015-05-30 23:43:23 +02:00
parent ee1ba33c4c
commit 61207046de

View file

@ -89,7 +89,7 @@ philosophy, memory safety, and the mechanism by which Rust guarantees it, the
> * exactly one mutable reference (`&mut T`)
[ownership]: ownership.html
[borrowing]: borrowing.html#The-Rules
[borrowing]: references-and-borrowing.html#borrowing
So, thats the real definition of immutability: is this safe to have two
pointers to? In `Arc<T>`s case, yes: the mutation is entirely contained inside