fix review suggestion
This commit is contained in:
parent
8b24a1e9bd
commit
e38fa37202
|
|
@ -1,8 +1,12 @@
|
|||
# Type checking
|
||||
|
||||
The [`hir_analysis`] crate contains the source for "type collection" as well as a bunch of related functionality. Checking the bodies of functions is implemented in the [`hir_typeck`] crate. (It draws heavily on the [type inference] and [trait solving].)
|
||||
The [`hir_analysis`] crate contains the source for "type collection" as well
|
||||
as a bunch of related functionality.
|
||||
Checking the bodies of functions is implemented in the [`hir_typeck`] crate.
|
||||
These crates draw heavily on the [type inference] and [trait solving].
|
||||
|
||||
[`hir_analysis`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_hir_analysis/index.html
|
||||
[`hir_typeck`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_hir_typeck/index.html
|
||||
[type inference]: ./type-inference.md
|
||||
[trait solving]: ./traits/resolution.md
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue