From 247519eefb08be29f78c9d58b72e086d8c41ea85 Mon Sep 17 00:00:00 2001 From: Tbkhi Date: Tue, 12 Mar 2024 15:49:19 -0300 Subject: [PATCH] Update macro-expansion.md --- src/macro-expansion.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/macro-expansion.md b/src/macro-expansion.md index 81ebdcc3..e7eaf197 100644 --- a/src/macro-expansion.md +++ b/src/macro-expansion.md @@ -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