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.
This commit is contained in:
Guillaume Gomez 2016-05-24 12:58:17 +02:00
commit 66faadaf33

View File

@ -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