Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/macros.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ The functionality and syntax of Rust can be extended with custom definitions cal

There are two ways to define new macros:

* [Macros by Example] define new syntax in a higher-level, declarative way.
* [Procedural Macros] define function-like macros, custom derives, and custom attributes using functions that operate on input tokens.
* [Macros by example] define new syntax in a higher-level, declarative way.
* [Procedural macros] define function-like macros, custom derives, and custom attributes using functions that operate on input tokens.

r[macro.invocation]
## Macro invocation
Expand Down
Loading