From 851007cc6cc530ce6231780286016ed86d8c2a79 Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Thu, 28 May 2015 00:33:43 +0300 Subject: [PATCH] Fix output of test that relied on the documentation wording. --- idea/testData/editor/quickDoc/MethodFromStdLib.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idea/testData/editor/quickDoc/MethodFromStdLib.kt b/idea/testData/editor/quickDoc/MethodFromStdLib.kt index a0f6b0a2c0d..953f2f53dc8 100644 --- a/idea/testData/editor/quickDoc/MethodFromStdLib.kt +++ b/idea/testData/editor/quickDoc/MethodFromStdLib.kt @@ -2,5 +2,5 @@ fun test() { listOf(1, 2, 4).filter { it > 0 } } -//INFO: inline public fun <T> Iterable<T>.filter(predicate: (T) → Boolean): List<T> defined in kotlin

Returns a list containing all elements matching the given predicate +//INFO: inline public fun <T> Iterable<T>.filter(predicate: (T) → Boolean): List<T> defined in kotlin

Returns a list containing all elements matching the given predicate. //INFO: