Skip to content

Commit 1ac83cf

Browse files
committed
Rollup merge of rust-lang#34414 - alfiedotwtf:patch-1, r=steveklabnik
Switched tense to clarify what is happening in the example
2 parents 1f7a71b + eb17527 commit 1ac83cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/doc/book/patterns.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ Here, we bind the first and last element of the tuple to `x` and `z`, but
174174
ignore the middle element.
175175

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

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

0 commit comments

Comments
 (0)