diff options
| author | bors <bors@rust-lang.org> | 2013-10-31 10:31:56 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-10-31 10:31:56 -0700 |
| commit | b2f62acaebbe2aa0962c0402d467310b2571ff4e (patch) | |
| tree | 05059f8cb659e5ec252ef8bf90282433001c6a4f | |
| parent | e976de32dc590f759e6c0c72d286844ca373e775 (diff) | |
| parent | 986fb3c617e569d6342bab23e06456dca27942ef (diff) | |
| download | rust-b2f62acaebbe2aa0962c0402d467310b2571ff4e.tar.gz rust-b2f62acaebbe2aa0962c0402d467310b2571ff4e.zip | |
auto merge of #10167 : briantdawn/rust/master, r=cmr
To keep consistency with the word "borrowing" I suppose an alternate way to write this could be "Having an object borrow an immutable pointer freezes it and prevents mutation".
| -rw-r--r-- | doc/tutorial.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tutorial.md b/doc/tutorial.md index 3eab4ceffec..35b973ee89f 100644 --- a/doc/tutorial.md +++ b/doc/tutorial.md @@ -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. ~~~~ |
