1
Fork 0

Doc: grammar fix in intro.md

This commit is contained in:
Reilly Watson 2014-06-03 10:24:54 -04:00
parent 837013717a
commit 5b80172f10

View 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: