From 8da5ed2026acbe655e7fac53c95623bf37e45a97 Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Fri, 21 Mar 2014 14:36:06 -0700 Subject: [PATCH] Copy-edit a sentence about borrowing references --- src/doc/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/tutorial.md b/src/doc/tutorial.md index 3c0439b7cd165..5d180cdfab570 100644 --- a/src/doc/tutorial.md +++ b/src/doc/tutorial.md @@ -1395,7 +1395,7 @@ let mut y = ~5; // mutable In contrast with owned boxes, where the holder of an owned box is the owner of the pointed-to memory, references never imply ownership - they are "borrowed". -A reference can be borrowed to +You can borrow a reference to any object, and the compiler verifies that it cannot outlive the lifetime of the object.