core: fix comment typo in unify_call()

This commit is contained in:
lyken 2024-06-27 10:12:08 +08:00
parent 3958a9ccd8
commit 8ca06b5a25
1 changed files with 1 additions and 1 deletions

View File

@ -704,7 +704,7 @@ impl Unifier {
} }
// After checking posargs and kwargs, check if there are any // 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 let missing_arg_names = param_info_by_name
.values() .values()
.filter(|param_info| param_info.param.is_required() && !param_info.has_been_supplied) .filter(|param_info| param_info.param.is_required() && !param_info.has_been_supplied)