From fe9019058d8a018931b2a88513ac03f1a8b83aa0 Mon Sep 17 00:00:00 2001 From: coffee-and-tea <40965619+coffee-and-tea@users.noreply.github.com> Date: Tue, 22 Mar 2022 21:47:46 -0500 Subject: [PATCH] remove incorrect comments (#2893) --- .../io/kotest/matchers/collections/containExactly.kt | 8 -------- 1 file changed, 8 deletions(-) diff --git a/kotest-assertions/kotest-assertions-core/src/commonMain/kotlin/io/kotest/matchers/collections/containExactly.kt b/kotest-assertions/kotest-assertions-core/src/commonMain/kotlin/io/kotest/matchers/collections/containExactly.kt index d22859fe74a..af2bcac2274 100644 --- a/kotest-assertions/kotest-assertions-core/src/commonMain/kotlin/io/kotest/matchers/collections/containExactly.kt +++ b/kotest-assertions/kotest-assertions-core/src/commonMain/kotlin/io/kotest/matchers/collections/containExactly.kt @@ -13,14 +13,6 @@ import io.kotest.matchers.should import io.kotest.matchers.shouldNot import kotlin.jvm.JvmName -/** - * Verifies that this collection contains the sub collections provided in the exact given order. - * - * So, for example, listOf(1,2,3) contains exactly the sub collections: - * - * [], [1], [2], [3], [1,2], [2,3] and [1,2,3]. - * - */ @JvmName("shouldContainExactly_iterable") infix fun Iterable?.shouldContainExactly(expected: Iterable) = this?.toList() should containExactly(expected.toList())