diff options
| author | Lukas Wirth <me@lukaswirth.dev> | 2025-05-31 12:47:26 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-31 12:47:26 +0000 |
| commit | 01a1908a46079331001321db67b09689e0f2b050 (patch) | |
| tree | 7efdd6ec8fb7d80bc050de14a7ec524f17a9fed5 /src | |
| parent | cac7468d00e2dd161a5f3a100596b86188b957de (diff) | |
| parent | 2428070096f9e48f805fba00af0e572f39bdda46 (diff) | |
| download | rust-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.rs | 4 |
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 } |
