diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2016-06-25 14:16:20 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2016-06-25 18:16:39 +0530 |
| commit | 1ac83cf031a86bf949144500c5b87d7266a85170 (patch) | |
| tree | a4106a37fd6d2b3b30788690f69d3d991d448f1f | |
| parent | 1f7a71b2b75bb5a3a610f85cc87ffee030e86d47 (diff) | |
| parent | eb17527039c466f6f79c595f9f99a1a324a85955 (diff) | |
| download | rust-1ac83cf031a86bf949144500c5b87d7266a85170.tar.gz rust-1ac83cf031a86bf949144500c5b87d7266a85170.zip | |
Rollup merge of #34414 - alfiedotwtf:patch-1, r=steveklabnik
Switched tense to clarify what is happening in the example
| -rw-r--r-- | src/doc/book/patterns.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/book/patterns.md b/src/doc/book/patterns.md index 7ecfdcfcc1e..a0245d4c7b1 100644 --- a/src/doc/book/patterns.md +++ b/src/doc/book/patterns.md @@ -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")); |
