about summary refs log tree commit diff
path: root/doc/tutorial.md
diff options
context:
space:
mode:
authorCorey Richardson <corey@octayn.net>2013-12-06 12:10:20 -0500
committerCorey Richardson <corey@octayn.net>2013-12-10 09:43:35 -0500
commit079ea00d238113827c0c2d57e8447ce1ab69afe9 (patch)
tree307049935ee75ffab2830cba0464e67c9cf3918f /doc/tutorial.md
parenteb8739f4f868cfb52bc4bb3500bb895d5e4c6032 (diff)
downloadrust-079ea00d238113827c0c2d57e8447ce1ab69afe9.tar.gz
rust-079ea00d238113827c0c2d57e8447ce1ab69afe9.zip
Macro definition is feature gated.
Diffstat (limited to 'doc/tutorial.md')
-rw-r--r--doc/tutorial.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/tutorial.md b/doc/tutorial.md
index 6f6a86042f3..7b8c670e8ea 100644
--- a/doc/tutorial.md
+++ b/doc/tutorial.md
@@ -410,7 +410,9 @@ println!("what is this thing: {:?}", mystery_object);
 [pf]: http://en.cppreference.com/w/cpp/io/c/fprintf
 [fmt]: http://static.rust-lang.org/doc/master/std/fmt/index.html
 
-You can define your own syntax extensions with the macro system. For details, see the [macro tutorial][macros].
+You can define your own syntax extensions with the macro system. For details,
+see the [macro tutorial][macros]. Note that macro definition is currently
+considered an unstable feature.
 
 # Control structures