about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2014-06-23 16:11:19 -0400
committerAlex Crichton <alex@alexcrichton.com>2014-06-24 17:22:45 -0700
commit85effb9f3e1f7f6e6e08788494f3ffedcabc7369 (patch)
tree3a404465217fa594c92c8a8961ea9e5748040b58
parentb18c4cfef0250eb7cc9b7e8273325878be72c242 (diff)
Improve ambiguous pronoun.
Fixes #14806
-rw-r--r--src/doc/tutorial.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/doc/tutorial.md b/src/doc/tutorial.md
index 39d2da30fa4..91556b81378 100644
--- a/src/doc/tutorial.md
+++ b/src/doc/tutorial.md
@@ -1488,9 +1488,10 @@ For a more in-depth explanation of references and lifetimes, read the
 
 ## Freezing
 
-Lending an &-pointer to an object freezes it and prevents mutation—even if the object was declared as `mut`.
-`Freeze` objects have freezing enforced statically at compile-time. An example
-of a non-`Freeze` type is [`RefCell<T>`][refcell].
+Lending an &-pointer to an object freezes the pointed-to object and prevents
+mutation—even if the object was declared as `mut`.  `Freeze` objects have
+freezing enforced statically at compile-time. An example of a non-`Freeze` type
+is [`RefCell<T>`][refcell].
 
 ~~~~
 let mut x = 5;