From 344b9599989b57155d5563f111687bfe02cc45aa Mon Sep 17 00:00:00 2001 From: lyken Date: Thu, 13 Jun 2024 16:03:47 +0800 Subject: [PATCH] core: fix typo in into_var_map --- nac3core/src/typecheck/typedef/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nac3core/src/typecheck/typedef/mod.rs b/nac3core/src/typecheck/typedef/mod.rs index 59e1ad4..b7157c3 100644 --- a/nac3core/src/typecheck/typedef/mod.rs +++ b/nac3core/src/typecheck/typedef/mod.rs @@ -60,7 +60,7 @@ pub type VarMap = IndexMapping; /// 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(vars: I) -> VarMap where I: IntoIterator,