From 534da34d36635743d89d78bcdf8c087257cc545e Mon Sep 17 00:00:00 2001 From: James Strachan Date: Tue, 3 Apr 2012 19:07:43 +0100 Subject: [PATCH] improved the docs and test cases --- libraries/stdlib/src/kotlin/JLangIterables.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/stdlib/src/kotlin/JLangIterables.kt b/libraries/stdlib/src/kotlin/JLangIterables.kt index beca258333c..061fafa1eb1 100644 --- a/libraries/stdlib/src/kotlin/JLangIterables.kt +++ b/libraries/stdlib/src/kotlin/JLangIterables.kt @@ -157,7 +157,7 @@ public inline fun java.lang.Iterable.groupBy(result: Map> = * If a collection could be huge you can specify a non-negative value of *limit* which will only show a subset of the collection then it will * a special *truncated* separator (which defaults to "..." * - * @includeFunctionBody ../../test/CollectionTest.kt appendString + * @includeFunctionBody ../../test/CollectionTest.kt makeString */ public inline fun java.lang.Iterable.makeString(separator: String = ", ", prefix: String = "", postfix: String = "", limit: Int = -1, truncated: String = "..."): String { val buffer = StringBuilder()