about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-05-11 19:58:57 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-05-11 19:58:57 +0530
commit8f01d8d7c290f24980e2915b2df14d244eb430a2 (patch)
treecdd7a0efd8583ad8d9a4006c3804f925899bb4ff /src
parent1b8f52bb696e93f20d1bb5f719dc7c587f96733a (diff)
parenta168a15008e5a5ac50a3914e8d15c6ee8fbc92ce (diff)
downloadrust-8f01d8d7c290f24980e2915b2df14d244eb430a2.tar.gz
rust-8f01d8d7c290f24980e2915b2df14d244eb430a2.zip
Rollup merge of #25287 - petehunt:patch-2, r=steveklabnik
Diffstat (limited to 'src')
-rw-r--r--src/doc/trpl/references-and-borrowing.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/trpl/references-and-borrowing.md b/src/doc/trpl/references-and-borrowing.md
index da416e994c4..c434371ce59 100644
--- a/src/doc/trpl/references-and-borrowing.md
+++ b/src/doc/trpl/references-and-borrowing.md
@@ -6,7 +6,7 @@ become quite acquainted. Ownership is how Rust achieves its largest goal,
 memory safety. There are a few distinct concepts, each with its own
 chapter:
 
-* [ownership][ownership], ownership, the key concept
+* [ownership][ownership], the key concept
 * borrowing, which you’re reading now
 * [lifetimes][lifetimes], an advanced concept of borrowing
 
@@ -368,4 +368,4 @@ statement 1 at 3:14
     
     println!("{}", y);
 }
-```
\ No newline at end of file
+```