about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabiano Beselga <fabianobeselga@gmail.com>2015-10-12 13:58:21 -0300
committerFabiano Beselga <fabianobeselga@gmail.com>2015-10-12 13:58:21 -0300
commit086f6b803f2994c1b78b25dbdf334a736dba81b9 (patch)
tree1fb27d4218baadbe4e337795040450320a2732e7
parent843e528fd0c09666cc5f2896258f88c25eaacb29 (diff)
downloadrust-086f6b803f2994c1b78b25dbdf334a736dba81b9.tar.gz
rust-086f6b803f2994c1b78b25dbdf334a736dba81b9.zip
Fix docs about borrowing and lifetimes
-rw-r--r--src/doc/trpl/lifetimes.md2
-rw-r--r--src/doc/trpl/references-and-borrowing.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/trpl/lifetimes.md b/src/doc/trpl/lifetimes.md
index 23569dd1b91..0a6e2745e3d 100644
--- a/src/doc/trpl/lifetimes.md
+++ b/src/doc/trpl/lifetimes.md
@@ -1,6 +1,6 @@
 % Lifetimes
 
-This guide is one of three presenting Rust’s ownership system. This is one of
+This guide is three 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. There are a few distinct concepts, each with its own chapter:
diff --git a/src/doc/trpl/references-and-borrowing.md b/src/doc/trpl/references-and-borrowing.md
index 8f39f0a122c..3027f10aca5 100644
--- a/src/doc/trpl/references-and-borrowing.md
+++ b/src/doc/trpl/references-and-borrowing.md
@@ -1,6 +1,6 @@
 % References and Borrowing
 
-This guide is one of three presenting Rust’s ownership system. This is one of
+This guide is two 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. There are a few distinct concepts, each with its own