forked from M-Labs/nac3
1
0
Fork 0

core: fix comment typo in unify_call()

This commit is contained in:
lyken 2024-06-27 10:12:08 +08:00 committed by sb10q
parent 0ec967a468
commit b21df53e0d
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)