Skip to content

Commit

Permalink
Rollup merge of rust-lang#33759 - aakloxu:patch-2, r=steveklabnik
Browse files Browse the repository at this point in the history
Fix references links

There are duplicate link references in the article and just remove one of them.
  • Loading branch information
GuillaumeGomez committed May 24, 2016
2 parents 890c3f9 + 4c7b963 commit 66faada
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/doc/book/primitive-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 66faada

Please sign in to comment.