diff --git a/src/macros.md b/src/macros.md index 169d2e4cd2..bdc7ce6829 100644 --- a/src/macros.md +++ b/src/macros.md @@ -8,7 +8,7 @@ However, unlike macros in C and other languages, Rust macros are expanded into abstract syntax trees, rather than string preprocessing, so you don't get unexpected precedence bugs. -Macros are created using the `macro_rules!` macro. +Macros can be created using the `macro_rules!` macro. ```rust,editable // This is a simple macro named `say_hello`.