From 05d22ebd5093255e8ea3f0517f7d3afd4f210b24 Mon Sep 17 00:00:00 2001 From: Tshepang Mbambo Date: Sun, 15 Jan 2023 21:18:38 +0200 Subject: [PATCH] rustc_typeck exists no more --- src/type-checking.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/type-checking.md b/src/type-checking.md index 08f15e30..d9731649 100644 --- a/src/type-checking.md +++ b/src/type-checking.md @@ -1,10 +1,10 @@ # Type checking -The [`rustc_typeck`][typeck] crate contains the source for "type collection" +The [`hir_analysis`] crate contains the source for "type collection" and "type checking", as well as a few other bits of related functionality. (It draws heavily on the [type inference] and [trait solving].) -[typeck]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_hir_analysis/index.html +[`hir_analysis`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_hir_analysis/index.html [type inference]: ./type-inference.md [trait solving]: ./traits/resolution.md