about summary refs log tree commit diff
path: root/doc/tutorial.md
diff options
context:
space:
mode:
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