From 5b80172f10e574ffe81490cb061e00c35e808def Mon Sep 17 00:00:00 2001 From: Reilly Watson Date: Tue, 3 Jun 2014 10:24:54 -0400 Subject: [PATCH] Doc: grammar fix in intro.md --- src/doc/intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/intro.md b/src/doc/intro.md index 0e9114d7b76..ba8a7307826 100644 --- a/src/doc/intro.md +++ b/src/doc/intro.md @@ -18,7 +18,7 @@ and its implications on a task that programmers usually find very difficult: con Ownership is central to Rust, and is the feature from which many of Rust's powerful capabilities are derived. -"Ownership" refers to which parts of your code are allowed read, +"Ownership" refers to which parts of your code are allowed to read, write, and ultimately release, memory. Let's start by looking at some C++ code: