about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorTshepang Mbambo <tshepang@gmail.com>2025-05-12 23:59:55 +0200
committerTshepang Mbambo <tshepang@gmail.com>2025-05-12 23:59:55 +0200
commitb255ae2cdb6b06fca12142a5287ddab58901fe10 (patch)
treeeb688272721006b7f353e07d5ed0dec0f853bae7 /src/doc/rustc-dev-guide
parente98364238c035a432ff26fd3e16ddbbbf46eab10 (diff)
downloadrust-b255ae2cdb6b06fca12142a5287ddab58901fe10.tar.gz
rust-b255ae2cdb6b06fca12142a5287ddab58901fe10.zip
remove dangling references
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/macro-expansion.md3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/doc/rustc-dev-guide/src/macro-expansion.md b/src/doc/rustc-dev-guide/src/macro-expansion.md
index 76b4f2c617d..a90f717004f 100644
--- a/src/doc/rustc-dev-guide/src/macro-expansion.md
+++ b/src/doc/rustc-dev-guide/src/macro-expansion.md
@@ -9,9 +9,6 @@ we have a complete [*Abstract Syntax Tree* (AST)][ast] for our crate with no
 unexpanded macros (or a compile error).
 
 [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
 [placeholders]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_expand/placeholders/index.html
 
 First, we discuss the algorithm that expands and integrates macro output into