diff --git a/doc/tutorial.md b/doc/tutorial.md index bb5e1bdd7bc77..4c67cd5e04b2a 100644 --- a/doc/tutorial.md +++ b/doc/tutorial.md @@ -1429,7 +1429,7 @@ For a more in-depth explanation of references and lifetimes, read the ## Freezing -Lending an immutable pointer to an object freezes it and prevents mutation. +Lending a mutable pointer to an object freezes it and prevents mutation. `Freeze` objects have freezing enforced statically at compile-time. An example of a non-`Freeze` type is [`RefCell`][refcell].