From 8f62f51e7465405732644b6a92704cca5a63a7ed Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Wed, 29 Jun 2016 19:01:31 -0600 Subject: [PATCH] Make the verb tense consistent --- src/ch06-03-match.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ch06-03-match.md b/src/ch06-03-match.md index c118211..1b433f9 100644 --- a/src/ch06-03-match.md +++ b/src/ch06-03-match.md @@ -84,8 +84,8 @@ return the `None` value that is on the right side of the `=>`. We don't check any other arms since we found one that matched. Combining `match` and enums together is extremely powerful. You'll see this -pattern a lot in Rust code: `match` against an enum, binding to the data -inside, and then executing code based on it. It's a bit tricky at first, but +pattern a lot in Rust code: `match` against an enum, bind to the data +inside, and then execute code based on it. It's a bit tricky at first, but once you get used to it, you'll wish you had it in languages that don't support it. It's consistently a user favorite.