Skip to content

Commit 132f73f

Browse files
authored
Fix erroroneous implication
macro-rules! is just one way of creating macros since there is also procedural macros, etc.
1 parent 898f0ac commit 132f73f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/macros.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ However, unlike macros in C and other languages, Rust macros are expanded into
88
abstract syntax trees, rather than string preprocessing, so you don't get
99
unexpected precedence bugs.
1010

11-
Macros are created using the `macro_rules!` macro.
11+
Macros can be created using the `macro_rules!` macro.
1212

1313
```rust,editable
1414
// This is a simple macro named `say_hello`.

0 commit comments

Comments
 (0)