From 31c25ebb50aba15719dc4976f78c39e863c99528 Mon Sep 17 00:00:00 2001 From: Jens Date: Sun, 24 Nov 2019 09:28:33 +0100 Subject: [PATCH] Add link to chapter on pattern syntax After being stuck on exercise enums3.rs for about an hour or two, having read the entire chapter on enums 2-3 times, and still being unable to complete the exercise, i started broadening my reading. I finally found the answer in the rust docs via google. --- exercises/enums/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/exercises/enums/README.md b/exercises/enums/README.md index f31a713..220ac28 100644 --- a/exercises/enums/README.md +++ b/exercises/enums/README.md @@ -5,3 +5,4 @@ Rust allows you to define a type called `enums` which allow you to enumerate pos #### Book Sections - [Enums](https://doc.rust-lang.org/book/ch06-00-enums.html) +- [Pattern syntax](https://doc.rust-lang.org/book/ch18-03-pattern-syntax.html)