make more readable

This commit is contained in:
Tshepang Mbambo 2025-05-10 12:34:43 +02:00
parent 1d1a050dcd
commit ff1e1d1bcc
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
# `TypeFoldable` and `TypeFolder`
In [a previous chapter], we discussed instantiating binders. This involves looking at everything inside of a `Early(Binder)`
to find any usages of the bound vars in order to replace them. Binders can wrap an arbitrary Rust type `T` not just a `Ty` so
to find any usages of the bound vars in order to replace them. Binders can wrap an arbitrary Rust type `T`, not just a `Ty`. So,
how do we implement the `instantiate` methods on the `Early/Binder` types.
The answer is a couple of traits: