Skip to content

Commit

Permalink
Rollup merge of rust-lang#34414 - alfiedotwtf:patch-1, r=steveklabnik
Browse files Browse the repository at this point in the history
Switched tense to clarify what is happening in the example
  • Loading branch information
Manishearth committed Jun 25, 2016
2 parents 1f7a71b + eb17527 commit 1ac83cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/book/patterns.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ Here, we bind the first and last element of the tuple to `x` and `z`, but
ignore the middle element.

It’s worth noting that using `_` never binds the value in the first place,
which means a value may not move:
which means that the value does not move:

```rust
let tuple: (u32, String) = (5, String::from("five"));
Expand Down

0 comments on commit 1ac83cf

Please sign in to comment.