From 62a67f47feeea49e3635b889f419598e3b8debea Mon Sep 17 00:00:00 2001 From: Kartik Singhal Date: Sat, 20 Aug 2016 16:57:38 -0700 Subject: [PATCH] Remove unnecessary exclamation `match` is not a macro, is that '!' intentional? See line 37 where it seems more appropriate. --- src/ch06-02-match.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch06-02-match.md b/src/ch06-02-match.md index c63a85d..6284a46 100644 --- a/src/ch06-02-match.md +++ b/src/ch06-02-match.md @@ -12,7 +12,7 @@ go through each pattern in a `match`, and for the first pattern that the value execution. Since we're already talking about coins, let's use them for an example using -`match`! We can write a function that can take an unknown American coin and, in +`match`. We can write a function that can take an unknown American coin and, in a similar way as the coin counting machine, determine which coin it is and return its value in cents: