summaryrefslogtreecommitdiff
path: root/exercises/macros/README.md
diff options
context:
space:
mode:
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)