[AA] Clean up typos in KtTypeRenderer.

This commit is contained in:
Justin Paupore
2023-01-11 15:29:34 -08:00
committed by Ilya Kirillov
parent eccbc66581
commit cd61f545a8
6 changed files with 9 additions and 9 deletions
@@ -25,7 +25,7 @@ open class KtRendererProviderImpl(
override fun renderType(type: KtType, renderer: KtTypeRenderer, position: Variance): String {
return with(analysisSession) {
val approximatedType = KtRendererTypeApproximator.TO_DENNOTABLE.approximateType(type, position)
val approximatedType = KtRendererTypeApproximator.TO_DENOTABLE.approximateType(type, position)
prettyPrint { renderer.renderType(approximatedType, this) }
}
}