Merge pull request #19900 from Veykril/push-zurosouxqxzz

fix: Fix manual not containing diagnostics documentation
This commit is contained in:
Lukas Wirth 2025-05-31 12:47:26 +00:00 committed by GitHub
commit 2a388d1103
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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
}