summaryrefslogtreecommitdiff
path: root/exercises/macros/README.md
diff options
context:
space:
mode:
authorliv <liv@fastmail.com>2019-01-23 21:02:06 +0100
committerliv <liv@fastmail.com>2019-01-23 21:02:06 +0100
commita49a22071ab0c675e43e03ab9c08b0153d8f9c74 (patch)
tree20348ceb53e94aca5a63c207b6685f0501f1f03f /exercises/macros/README.md
parentdc1f3b79f8b528659e39057ac733d07e1051bc4d (diff)
redo the section readmes
Diffstat (limited to 'exercises/macros/README.md')
-rw-r--r--exercises/macros/README.md12
1 files changed, 10 insertions, 2 deletions
diff --git a/exercises/macros/README.md b/exercises/macros/README.md
index 87851c5..b8f8e42 100644
--- a/exercises/macros/README.md
+++ b/exercises/macros/README.md
@@ -1,2 +1,10 @@
-For this exercise check out the section [Macros](https://doc.rust-lang.org/book/2018-edition/macros.html) and the chapter
-[Macros Appendix](https://doc.rust-lang.org/book/2018-edition/appendix-04-macros.html) of the Rust Book and [The Little Book of Rust Macros](https://danielkeep.github.io/tlborm/book/index.html).
+### Macros
+
+Rust's macro system is very powerful, but also kind of difficult to wrap your
+head around. We're not going to teach you how to write your own fully-featured
+modules, instead we'll show you how to use and create them.
+
+#### Book Sections
+
+- [Macros](https://doc.rust-lang.org/stable/book/ch19-06-macros.html)
+- [The Little Book of Rust Macros](https://danielkeep.github.io/tlborm/book/index.html)