diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-03-12 08:13:27 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-12 08:13:27 +0100 |
| commit | 0b0f33476450cd5ac16b679f84da3b0d9731dc0b (patch) | |
| tree | d109f34cd3fdccda3acb6dee4b55d41d03e8d3d7 | |
| parent | 67c9dbfe0276c3893627640960cb388678252ae3 (diff) | |
| parent | 29b0befd18b91e8af9ca039526e4aa0c05fb0f2b (diff) | |
| download | rust-0b0f33476450cd5ac16b679f84da3b0d9731dc0b.tar.gz rust-0b0f33476450cd5ac16b679f84da3b0d9731dc0b.zip | |
Rollup merge of #108984 - Teapot4195:issue-106803-fix, r=ozkanonur
bootstrap: document tidy Enable documentation of tidy, as suggested in #106803. Jyn mentioned they should probably be added to `doc.rust-lang.org`, how should that be done?
| -rw-r--r-- | src/bootstrap/builder.rs | 1 | ||||
| -rw-r--r-- | src/bootstrap/doc.rs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/bootstrap/builder.rs b/src/bootstrap/builder.rs index 47d742ef796..bb07ca1908e 100644 --- a/src/bootstrap/builder.rs +++ b/src/bootstrap/builder.rs @@ -741,6 +741,7 @@ impl<'a> Builder<'a> { doc::EmbeddedBook, doc::EditionGuide, doc::StyleGuide, + doc::Tidy, ), Kind::Dist => describe!( dist::Docs, diff --git a/src/bootstrap/doc.rs b/src/bootstrap/doc.rs index cc80763ef44..36fdd4abf4f 100644 --- a/src/bootstrap/doc.rs +++ b/src/bootstrap/doc.rs @@ -882,6 +882,7 @@ tool_doc!( // "cargo-credential-wincred", ] ); +tool_doc!(Tidy, "tidy", "src/tools/tidy", ["tidy"]); #[derive(Ord, PartialOrd, Debug, Copy, Clone, Hash, PartialEq, Eq)] pub struct ErrorIndex { |
