From debe48cd61c1be12fdb90c66233399da220a9c2c Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Mon, 23 Jun 2014 16:11:19 -0400 Subject: [PATCH] Improve ambiguous pronoun. Fixes #14806 --- src/doc/tutorial.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/doc/tutorial.md b/src/doc/tutorial.md index e6d9cef7a3108..fdcf6bb08da1a 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`][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`][refcell]. ~~~~ let mut x = 5;