core: refactor to use TypeVarId and TypeVar #414

Merged
sb10q merged 1 commits from type-var-id into master 2024-08-17 17:37:21 +08:00
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ pub type VarMap = IndexMapping<TypeVarId>;
/// Build a [`VarMap`] from an iterator of [`TypeVar`]
///
/// The resulting [`VarMap`] wil have the same order as the input iterator.
/// The resulting [`VarMap`] will have the same order as the input iterator.
pub fn into_var_map<I>(vars: I) -> VarMap
where
I: IntoIterator<Item = TypeVar>,