core: Fix typo in error message #380

Merged
sb10q merged 1 commits from misc-fix into master 2024-02-14 16:35:38 +08:00
1 changed files with 1 additions and 1 deletions

View File

@ -337,7 +337,7 @@ impl<'a> Inferencer<'a> {
if !self.check_return_value_ty(ret_ty) {
return Err(HashSet::from([
format!(
"return value of type {} must be a primitive of a tuple of primitives at {}",
"return value of type {} must be a primitive or a tuple of primitives at {}",
self.unifier.stringify(ret_ty),
value.location,
),