about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTincan <tincann@users.noreply.github.com>2015-05-07 20:23:47 +0200
committerTincan <tincann@users.noreply.github.com>2015-05-07 20:23:47 +0200
commit4d1e48e37610f421f30e098f2ae9ef98b85b66eb (patch)
treeb53c905051094f96244fb3a96a6b7c1d80f10151
parenta39d4fc68472ed7a512a7de93f422d7697d92e06 (diff)
downloadrust-4d1e48e37610f421f30e098f2ae9ef98b85b66eb.tar.gz
rust-4d1e48e37610f421f30e098f2ae9ef98b85b66eb.zip
Typo in ownership.md
-rw-r--r--src/doc/trpl/ownership.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/ownership.md b/src/doc/trpl/ownership.md
index 3003156f875..a70f03739f7 100644
--- a/src/doc/trpl/ownership.md
+++ b/src/doc/trpl/ownership.md
@@ -3,7 +3,7 @@
 This guide is one of three presenting Rust’s ownership system. This is one of
 Rust’s most unique and compelling features, with which Rust developers should
 become quite acquainted. Ownership is how Rust achieves its largest goal,
-memory safety. The there are a few distinct concepts, each with its own
+memory safety. There are a few distinct concepts, each with its own
 chapter:
 
 * ownership, which you’re reading now.