Fixed incorrect usage of 'Borrowing'.

This commit is contained in:
Brian 2013-10-30 00:47:42 +00:00
parent fc766efd16
commit 986fb3c617

View File

@ -1142,7 +1142,7 @@ For a more in-depth explanation of borrowed pointers, read the
## Freezing
Borrowing an immutable pointer to an object freezes it and prevents mutation.
Lending an immutable pointer to an object freezes it and prevents mutation.
`Owned` objects have freezing enforced statically at compile-time.
~~~~