]> git.lizzy.rs Git - rust.git/blobdiff - crates/hir-ty/src/infer.rs
rustc_typeck to rustc_hir_analysis
[rust.git] / crates / hir-ty / src / infer.rs
index e37763e8ea7f03075b5c19349d4c7d5ff1baf69d..9dbeba4f9f48f900bf0afd09ef9ba2e11522e667 100644 (file)
@@ -2,7 +2,7 @@
 //! the type of each expression and pattern.
 //!
 //! For type inference, compare the implementations in rustc (the various
-//! check_* methods in librustc_typeck/check/mod.rs are a good entry point) and
+//! check_* methods in rustc_hir_analysis/check/mod.rs are a good entry point) and
 //! IntelliJ-Rust (org.rust.lang.core.types.infer). Our entry point for
 //! inference here is the `infer` function, which infers the types of all
 //! expressions in a given function.