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;