[FIR] Fix typo

This commit is contained in:
Kirill Rakhman
2023-11-13 11:01:54 +01:00
committed by Space Team
parent bad33d81a3
commit 28a14ebd42
@@ -486,7 +486,7 @@ private fun Candidate.prepareExpectedType(
}
}
}
?: getExpectedTypeWithImplicintIntegerCoercion(session, argument, parameter, basicExpectedType)
?: getExpectedTypeWithImplicitIntegerCoercion(session, argument, parameter, basicExpectedType)
?: basicExpectedType
return this.substitutor.substituteOrSelf(expectedType)
}
@@ -508,7 +508,7 @@ private fun Candidate.getExpectedTypeWithSAMConversion(
}
}
private fun getExpectedTypeWithImplicintIntegerCoercion(
private fun getExpectedTypeWithImplicitIntegerCoercion(
session: FirSession,
argument: FirExpression,
parameter: FirValueParameter,