]> git.lizzy.rs Git - rust.git/commitdiff
Doc: grammar fix in intro.md
authorReilly Watson <reillywatson@gmail.com>
Tue, 3 Jun 2014 14:24:54 +0000 (10:24 -0400)
committerReilly Watson <reillywatson@gmail.com>
Tue, 3 Jun 2014 14:24:54 +0000 (10:24 -0400)
src/doc/intro.md

index 0e9114d7b76322a4b3df2785e599f889399618ed..ba8a730782637f2ea245b6dbc3a68d21a373940b 100644 (file)
@@ -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: