Minor, fix typo in KotlinChunk.kt

#KT-37159 Fixed
This commit is contained in:
Alexander Udalov
2020-03-10 11:53:02 +01:00
parent 20c4a7b244
commit 43d6ddd405
@@ -153,7 +153,7 @@ class KotlinChunk internal constructor(val context: KotlinCompileContext, val ta
if (containsTests) append("tests of ")
append(targets.first().module.name)
if (targets.size > 1) {
val andXMore = "and ${targets.size - 1} more"
val andXMore = " and ${targets.size - 1} more"
val other = ", " + targets.asSequence().drop(1).joinToString()
append(if (other.length < andXMore.length) other else andXMore)
}