diff options
| author | bors <bors@rust-lang.org> | 2022-09-27 10:45:57 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-09-27 10:45:57 +0000 |
| commit | 57ee5cf5a93923dae9c98bffb11545fc3a31368d (patch) | |
| tree | abd98065e805dca388767b651ae60673397fea9d /src/librustdoc/core.rs | |
| parent | d9297d22ad9edc2b56f0dd8734c1187a0c88be69 (diff) | |
| parent | 1fc86a63f451b81606e4787692517dc613f333db (diff) | |
| download | rust-57ee5cf5a93923dae9c98bffb11545fc3a31368d.tar.gz rust-57ee5cf5a93923dae9c98bffb11545fc3a31368d.zip | |
Auto merge of #102306 - lcnr:rustc_hir_analysis, r=compiler-errors
rename rustc_typeck to rustc_hir_analysis first part of https://github.com/rust-lang/compiler-team/issues/529 r? `@compiler-errors`
Diffstat (limited to 'src/librustdoc/core.rs')
| -rw-r--r-- | src/librustdoc/core.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/core.rs b/src/librustdoc/core.rs index 76562d26a55..09a26cbac3e 100644 --- a/src/librustdoc/core.rs +++ b/src/librustdoc/core.rs @@ -293,7 +293,7 @@ pub(crate) fn create_config( override_queries: Some(|_sess, providers, _external_providers| { // Most lints will require typechecking, so just don't run them. providers.lint_mod = |_, _| {}; - // Prevent `rustc_typeck::check_crate` from calling `typeck` on all bodies. + // Prevent `rustc_hir_analysis::check_crate` from calling `typeck` on all bodies. providers.typeck_item_bodies = |_, _| {}; // hack so that `used_trait_imports` won't try to call typeck providers.used_trait_imports = |_, _| { |
