diff --git a/src/Sema.zig b/src/Sema.zig index 650349f744cb3a8a263aa7c0226de2b01c6209d4..5c75339910f40e42a156b4bede571a3f5ea6d7f4 100644 --- a/src/Sema.zig +++ b/src/Sema.zig @@ -16994,7 +16994,7 @@ fn resolvePeerTypes( if (candidate_ty.eql(chosen_ty)) continue; - // If the candidate can coernce into our chosen type, we're done. + // If the candidate can coerce into our chosen type, we're done. // If the chosen type can coerce into the candidate, use that. if ((try sema.coerceInMemoryAllowed(block, chosen_ty, candidate_ty, false, target, src, src)) == .ok) { continue;