about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorAlona Enraght-Moony <code@alona.page>2025-05-28 20:18:56 +0100
committerGitHub <noreply@github.com>2025-05-28 20:18:56 +0100
commit084e8d9db14c6d53aef6344f666ea7d731ead6cc (patch)
tree335d176347d26b9dc3e31fa613c6ee8b45a223c4 /src/doc/rustc-dev-guide
parent097ca1478d6f1d42dc07ff00b76b057a644ddf11 (diff)
downloadrust-084e8d9db14c6d53aef6344f666ea7d731ead6cc.tar.gz
rust-084e8d9db14c6d53aef6344f666ea7d731ead6cc.zip
directives.md: Fix `//@ build_aux_docs` -> `//@ build-aux-docs`
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/tests/directives.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/tests/directives.md b/src/doc/rustc-dev-guide/src/tests/directives.md
index dae659e6317..8a862417b0d 100644
--- a/src/doc/rustc-dev-guide/src/tests/directives.md
+++ b/src/doc/rustc-dev-guide/src/tests/directives.md
@@ -59,7 +59,7 @@ not be exhaustive. Directives can generally be found by browsing the
 | `aux-crate`           | Like `aux-build` but makes available as extern prelude                                                | All except `run-make` | `<extern_prelude_name>=<path/to/aux/file.rs>` |
 | `aux-codegen-backend` | Similar to `aux-build` but pass the compiled dylib to `-Zcodegen-backend` when building the main file | `ui-fulldeps`         | Path to codegen backend file                  |
 | `proc-macro`          | Similar to `aux-build`, but for aux forces host and don't use `-Cprefer-dynamic`[^pm].                | All except `run-make` | Path to auxiliary proc-macro `.rs` file       |
-| `build_aux_docs`      | Build docs for auxiliaries as well                                                                    | All except `run-make` | N/A                                           |
+| `build-aux-docs`      | Build docs for auxiliaries as well                                                                    | All except `run-make` | N/A                                           |
 
 [^pm]: please see the Auxiliary proc-macro section in the
     [compiletest](./compiletest.md) chapter for specifics.