about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/doc/intro.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/intro.md b/src/doc/intro.md
index 50f57aca12f..4d1eb1b31a7 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: