Remove unnecessary exclamation

`match` is not a macro, is that '!' intentional? See line 37 where it seems more appropriate.
This commit is contained in:
Kartik Singhal 2016-08-20 16:57:38 -07:00 committed by GitHub
parent ba94ced602
commit 62a67f47fe

View File

@ -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: