From a6254ec4aa0334f11ea2c742ec61fef659d5164b Mon Sep 17 00:00:00 2001 From: James Strachan Date: Wed, 7 Mar 2012 10:22:11 +0000 Subject: [PATCH] fixed up comment --- libraries/stdlib/src/JavaIterablesSpecial.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/stdlib/src/JavaIterablesSpecial.kt b/libraries/stdlib/src/JavaIterablesSpecial.kt index 266593b150c..d830fa88ebb 100644 --- a/libraries/stdlib/src/JavaIterablesSpecial.kt +++ b/libraries/stdlib/src/JavaIterablesSpecial.kt @@ -86,7 +86,7 @@ fun java.lang.Iterable.contains(item : T) : Boolean { } /** - * Convert collection of arbitrary elements to collection of + * Convert collection of arbitrary elements to collection of tuples of the index and the element */ fun java.lang.Iterable.withIndices() : java.lang.Iterable<#(Int, T)> { return object : java.lang.Iterable<#(Int, T)> {