]> git.lizzy.rs Git - rust.git/commitdiff
Improve ambiguous pronoun.
authorSteve Klabnik <steve@steveklabnik.com>
Mon, 23 Jun 2014 20:11:19 +0000 (16:11 -0400)
committerAlex Crichton <alex@alexcrichton.com>
Wed, 25 Jun 2014 00:22:45 +0000 (17:22 -0700)
Fixes #14806

src/doc/tutorial.md

index 39d2da30fa425e8bbb76334a281c3022373c6a27..91556b813781b12545182fbe2465283e92a90546 100644 (file)
@@ -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;