diff --git a/frontend/lib/resolution/Resolver.cpp b/frontend/lib/resolution/Resolver.cpp index 928039b16311..3c7d57365868 100644 --- a/frontend/lib/resolution/Resolver.cpp +++ b/frontend/lib/resolution/Resolver.cpp @@ -961,8 +961,8 @@ handleRejectedCandidates(Context* context, for (size_t i = 0; i < rejected.size(); i++) { auto &candidate = rejected[i]; if (candidate.reason() == resolution::FAIL_CANNOT_PASS && - /* skip printing detailed info_ here because computing the formal-actual - map will go poorly with an unknown formal. */ + /* skip computing the formal-actual map because it will go poorly + with an unknown formal. */ candidate.formalReason() != resolution::FAIL_UNKNOWN_FORMAL_TYPE) { auto fn = candidate.initialForErr(); resolution::FormalActualMap fa(fn, ci);