about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2016-05-24 12:58:17 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2016-05-24 12:58:17 +0200
commit66faadaf33cdf7c81e91041147e8097e03fe3c90 (patch)
tree723b979e9dbdb41a8c7b1db1d6e4faa966a7a290
parent890c3f9641982904552360146d07a38f9269339d (diff)
parent4c7b963862edb720c8426e5c536191e4e287f2bd (diff)
Rollup merge of #33759 - aakloxu:patch-2, r=steveklabnik
Fix references links

There are duplicate link references in the article and just remove one of them.
-rw-r--r--src/doc/book/primitive-types.md2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/doc/book/primitive-types.md b/src/doc/book/primitive-types.md
index 2a4b7ba37f2..b6a123bb367 100644
--- a/src/doc/book/primitive-types.md
+++ b/src/doc/book/primitive-types.md
@@ -175,8 +175,6 @@ You can use a combo of `&` and `[]` to create a slice from various things. The
 detail later in this section. The `[]`s, with a range, let you define the
 length of the slice:
 
-[references]: references-and-borrowing.html
-
 ```rust
 let a = [0, 1, 2, 3, 4];
 let complete = &a[..]; // A slice containing all of the elements in a