Update macro-expansion.md

This commit is contained in:
Tbkhi 2024-03-12 15:49:19 -03:00 committed by nora
parent c6fed1ee39
commit b956638072
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ This chapter is about the process of expanding those `macro`s iteratively until
we have a complete [*Abstract Syntax Tree* (`AST`)][ast] for our crate with no
unexpanded `macro`s (or a compile error).
[ast]: https://en.wikipedia.org/wiki/Abstract_syntax_tree
[ast]: ./ast-validation.md
[`rustc_ast`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_ast/index.html
[`rustc_expand`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_expand/index.html
[`rustc_builtin_macros`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_builtin_macros/index.html