From 43d6ddd4058a2a24688a679e6941810cb99c0027 Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Tue, 10 Mar 2020 11:53:02 +0100 Subject: [PATCH] Minor, fix typo in KotlinChunk.kt #KT-37159 Fixed --- jps-plugin/src/org/jetbrains/kotlin/jps/build/KotlinChunk.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jps-plugin/src/org/jetbrains/kotlin/jps/build/KotlinChunk.kt b/jps-plugin/src/org/jetbrains/kotlin/jps/build/KotlinChunk.kt index ee403420c12..24b5982e1f9 100644 --- a/jps-plugin/src/org/jetbrains/kotlin/jps/build/KotlinChunk.kt +++ b/jps-plugin/src/org/jetbrains/kotlin/jps/build/KotlinChunk.kt @@ -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) }