From 986fb3c617e569d6342bab23e06456dca27942ef Mon Sep 17 00:00:00 2001 From: Brian Date: Wed, 30 Oct 2013 00:47:42 +0000 Subject: [PATCH] Fixed incorrect usage of 'Borrowing'. --- doc/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorial.md b/doc/tutorial.md index f9f110c122b28..9758a2ca7407d 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. ~~~~