diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2014-06-23 16:11:19 -0400 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-06-24 17:22:45 -0700 |
| commit | 85effb9f3e1f7f6e6e08788494f3ffedcabc7369 (patch) | |
| tree | 3a404465217fa594c92c8a8961ea9e5748040b58 | |
| parent | b18c4cfef0250eb7cc9b7e8273325878be72c242 (diff) | |
Improve ambiguous pronoun.
Fixes #14806
| -rw-r--r-- | src/doc/tutorial.md | 7 |
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; |
