From f105329fb432c92a859733f45c80c83725eb2f1f Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Wed, 11 Nov 2015 04:05:07 +0300 Subject: [PATCH] Fix test dependent on exact documentation wording in stdlib. --- 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 e699c32c094..ae99f3c9254 100644 --- a/idea/testData/editor/quickDoc/MethodFromStdLib.kt +++ b/idea/testData/editor/quickDoc/MethodFromStdLib.kt @@ -2,4 +2,4 @@ fun test() { listOf(1, 2, 4).filter { it > 0 } } -//INFO: public inline fun <T> Iterable<T>.filter(predicate: (T) → Boolean): List<T> defined in kotlin

Returns a list containing all elements matching the given predicate.

+//INFO: public inline fun <T> Iterable<T>.filter(predicate: (T) → Boolean): List<T> defined in kotlin

Returns a list containing only elements matching the given predicate.