From 132f73fc51248469fae326d07e74b3600507394a Mon Sep 17 00:00:00 2001 From: George Date: Wed, 20 May 2026 12:54:15 -0400 Subject: [PATCH] Fix erroroneous implication macro-rules! is just one way of creating macros since there is also procedural macros, etc. --- src/macros.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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`.