summaryrefslogtreecommitdiff
path: root/exercises/enums
diff options
context:
space:
mode:
authorJens <jens.brimberg@gmail.com>2019-11-24 09:28:33 +0100
committerGitHub <noreply@github.com>2019-11-24 09:28:33 +0100
commit31c25ebb50aba15719dc4976f78c39e863c99528 (patch)
treed5bb7c0a85e6960eb22e235080dbe12c9fd9f07a /exercises/enums
parentf4acb888a693a607c940ef6de32b2b739f1571bf (diff)
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.
Diffstat (limited to 'exercises/enums')
-rw-r--r--exercises/enums/README.md1
1 files changed, 1 insertions, 0 deletions
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)