From 35df45edc0d6d74ffa7a600387f9672cbc58db59 Mon Sep 17 00:00:00 2001 From: Mike C Date: Wed, 16 Aug 2017 15:54:15 -0400 Subject: [PATCH] Fix variable reference typo State --> UsState --- second-edition/src/ch06-02-match.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/second-edition/src/ch06-02-match.md b/second-edition/src/ch06-02-match.md index 33d70dbfb..f881e215e 100644 --- a/second-edition/src/ch06-02-match.md +++ b/second-edition/src/ch06-02-match.md @@ -99,7 +99,7 @@ As an example, let’s change one of our enum variants to hold data inside it. From 1999 through 2008, the United States minted quarters with different designs for each of the 50 states on one side. No other coins got state designs, so only quarters have this extra value. We can add this information to -our `enum` by changing the `Quarter` variant to include a `State` value stored +our `enum` by changing the `Quarter` variant to include a `UsState` value stored inside it, which we’ve done here in Listing 6-4: ```rust