about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorLukas Wirth <me@lukaswirth.dev>2025-05-31 12:47:26 +0000
committerGitHub <noreply@github.com>2025-05-31 12:47:26 +0000
commit01a1908a46079331001321db67b09689e0f2b050 (patch)
tree7efdd6ec8fb7d80bc050de14a7ec524f17a9fed5 /src
parentcac7468d00e2dd161a5f3a100596b86188b957de (diff)
parent2428070096f9e48f805fba00af0e572f39bdda46 (diff)
downloadrust-01a1908a46079331001321db67b09689e0f2b050.tar.gz
rust-01a1908a46079331001321db67b09689e0f2b050.zip
Merge pull request #19900 from Veykril/push-zurosouxqxzz
fix: Fix manual not containing diagnostics documentation
Diffstat (limited to 'src')
-rw-r--r--src/tools/rust-analyzer/xtask/src/codegen.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/rust-analyzer/xtask/src/codegen.rs b/src/tools/rust-analyzer/xtask/src/codegen.rs
index bba7ad73f38..19ca62e8a32 100644
--- a/src/tools/rust-analyzer/xtask/src/codegen.rs
+++ b/src/tools/rust-analyzer/xtask/src/codegen.rs
@@ -24,8 +24,8 @@ impl flags::Codegen {
                 grammar::generate(self.check);
                 assists_doc_tests::generate(self.check);
                 parser_inline_tests::generate(self.check);
-                feature_docs::generate(self.check)
-                // diagnostics_docs::generate(self.check) doesn't generate any tests
+                feature_docs::generate(self.check);
+                diagnostics_docs::generate(self.check);
                 // lints::generate(self.check) Updating clones the rust repo, so don't run it unless
                 // explicitly asked for
             }