about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-10-31 10:31:56 -0700
committerbors <bors@rust-lang.org>2013-10-31 10:31:56 -0700
commitb2f62acaebbe2aa0962c0402d467310b2571ff4e (patch)
tree05059f8cb659e5ec252ef8bf90282433001c6a4f
parente976de32dc590f759e6c0c72d286844ca373e775 (diff)
parent986fb3c617e569d6342bab23e06456dca27942ef (diff)
downloadrust-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.md2
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.
 
 ~~~~