about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2016-06-25 14:16:20 +0530
committerManish Goregaokar <manishsmail@gmail.com>2016-06-25 18:16:39 +0530
commit1ac83cf031a86bf949144500c5b87d7266a85170 (patch)
treea4106a37fd6d2b3b30788690f69d3d991d448f1f
parent1f7a71b2b75bb5a3a610f85cc87ffee030e86d47 (diff)
parenteb17527039c466f6f79c595f9f99a1a324a85955 (diff)
downloadrust-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.md2
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"));