From 086f6b803f2994c1b78b25dbdf334a736dba81b9 Mon Sep 17 00:00:00 2001 From: Fabiano Beselga Date: Mon, 12 Oct 2015 13:58:21 -0300 Subject: [PATCH] Fix docs about borrowing and lifetimes --- src/doc/trpl/lifetimes.md | 2 +- src/doc/trpl/references-and-borrowing.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/doc/trpl/lifetimes.md b/src/doc/trpl/lifetimes.md index 23569dd1b917e..0a6e2745e3d54 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 8f39f0a122cd3..3027f10aca59e 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