diff --git a/libraries/stdlib/src/kotlin/JLangIterables.kt b/libraries/stdlib/src/kotlin/JLangIterables.kt index f0a3160c7e3..a8c741f3fd9 100644 --- a/libraries/stdlib/src/kotlin/JLangIterables.kt +++ b/libraries/stdlib/src/kotlin/JLangIterables.kt @@ -25,7 +25,7 @@ public inline fun java.lang.Iterable.any(predicate: (T) -> Boolean) : Boo /** * Appends the string from all the elements separated using the *separator* and using the given *prefix* and *postfix* if supplied * - * @includeFunctionBody ../../test/CollectionTest.kt makeString + * @includeFunctionBody ../../test/CollectionTest.kt appendString */ public inline fun java.lang.Iterable.appendString(buffer: Appendable, separator: String = ", ", prefix: String = "", postfix: String = "", limit: Int = -1): Unit { buffer.append(prefix)