about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDon Petersen <don@donpetersen.net>2015-05-09 20:25:09 -0700
committerDon Petersen <don@donpetersen.net>2015-05-09 20:32:00 -0700
commitf8888af412b517c55deed84f851b3dc3c93d81d0 (patch)
tree3faf5aed3b9a119ada6a65ad3fbb8cf984fd7c8c
parentdc630d01e3eae8ba05db98383119bc2ddbbb01c1 (diff)
downloadrust-f8888af412b517c55deed84f851b3dc3c93d81d0.tar.gz
rust-f8888af412b517c55deed84f851b3dc3c93d81d0.zip
Add omitted word to mutability docs.
-rw-r--r--src/doc/trpl/mutability.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/trpl/mutability.md b/src/doc/trpl/mutability.md
index 435407a8a96..9b386acdca2 100644
--- a/src/doc/trpl/mutability.md
+++ b/src/doc/trpl/mutability.md
@@ -78,8 +78,8 @@ When we call `clone()`, the `Arc<T>` needs to update the reference count. Yet
 we’ve not used any `mut`s here, `x` is an immutable binding, and we didn’t take
 `&mut 5` or anything. So what gives?
 
-To this, we have to go back to the core of Rust’s guiding philosophy, memory
-safety, and the mechanism by which Rust guarantees it, the
+To understand this, we have to go back to the core of Rust’s guiding
+philosophy, memory safety, and the mechanism by which Rust guarantees it, the
 [ownership][ownership] system, and more specifically, [borrowing][borrowing]:
 
 > You may have one or the other of these two kinds of borrows, but not both at