diff --git a/doc/tutorial.md b/doc/tutorial.md index f9f110c122b..9758a2ca740 100644 --- a/doc/tutorial.md +++ b/doc/tutorial.md @@ -1142,7 +1142,7 @@ For a more in-depth explanation of borrowed pointers, read the ## Freezing -Borrowing an immutable pointer to an object freezes it and prevents mutation. +Lending an immutable pointer to an object freezes it and prevents mutation. `Owned` objects have freezing enforced statically at compile-time. ~~~~