Skip to content

Commit 8da5ed2

Browse files
committed
Copy-edit a sentence about borrowing references
1 parent 7b957a8 commit 8da5ed2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/tutorial.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1395,7 +1395,7 @@ let mut y = ~5; // mutable
13951395
In contrast with
13961396
owned boxes, where the holder of an owned box is the owner of the pointed-to
13971397
memory, references never imply ownership - they are "borrowed".
1398-
A reference can be borrowed to
1398+
You can borrow a reference to
13991399
any object, and the compiler verifies that it cannot outlive the lifetime of
14001400
the object.
14011401

0 commit comments

Comments
 (0)