From 2d661a87248a790ac5509d019a4635d47a264159 Mon Sep 17 00:00:00 2001 From: ringabout <43030857+ringabout@users.noreply.github.com> Date: Thu, 7 May 2026 21:34:57 +0800 Subject: [PATCH] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- compiler/sigmatch.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/sigmatch.nim b/compiler/sigmatch.nim index 448f1a4f7b..2e9c9fe108 100644 --- a/compiler/sigmatch.nim +++ b/compiler/sigmatch.nim @@ -791,8 +791,8 @@ proc procParamTypeRel(c: var TCandidate; f, a: PType): TTypeRelation = # different C types (size_t vs unsigned long long). let fCheck = concreteType(c, f) let aCheck = concreteType(c, a) - # Notes that `result` is equal, now - # we check whether they have the same backend type + # Note that `result` is equal; now check whether they have the same + # backend type. if fCheck != nil and aCheck != nil and not sameBackendTypePickyAliases( fCheck.skipTypes({tyVar, tyLent, tySink, tyOwned}),