From b21df53e0d516317a5581a9fd7c64c00d17d481c Mon Sep 17 00:00:00 2001 From: lyken Date: Thu, 27 Jun 2024 10:12:08 +0800 Subject: [PATCH] core: fix comment typo in unify_call() --- 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 f041679..97c9483 100644 --- a/nac3core/src/typecheck/typedef/mod.rs +++ b/nac3core/src/typecheck/typedef/mod.rs @@ -704,7 +704,7 @@ impl Unifier { } // After checking posargs and kwargs, check if there are any - // unsupported required parameters, and throw an error if they exist. + // unsupplied required parameters, and throw an error if they exist. let missing_arg_names = param_info_by_name .values() .filter(|param_info| param_info.param.is_required() && !param_info.has_been_supplied)