From eb17527039c466f6f79c595f9f99a1a324a85955 Mon Sep 17 00:00:00 2001 From: Alfie John Date: Thu, 23 Jun 2016 06:20:29 +1000 Subject: [PATCH] Switched tense to clarify what is happening in the example --- src/doc/book/patterns.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/book/patterns.md b/src/doc/book/patterns.md index 7ecfdcfcc1e02..a0245d4c7b163 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"));