We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92c2ff4 commit 5d14f95Copy full SHA for 5d14f95
src/main/kotlin/io/vavr/kotlin/Collections.kt
@@ -177,7 +177,7 @@ fun <T> Array<T>.toVavrSet():
177
HashSet<T> = HashSet.ofAll(this.asIterable())
178
179
/**
180
- * Converts a Kotlin [Sequence] into a Vavr [List].
+ * Converts a Kotlin [Sequence] into a Vavr [Set].
181
*
182
* @see HashSet.ofAll
183
*/
@@ -223,7 +223,7 @@ fun <T> Sequence<T>.toVavrLinkedHashSet():
223
LinkedHashSet<T> = LinkedHashSet.ofAll(this.asIterable())
224
225
226
- * Creates a Vavr [TreeSet] from a series of Kotlin [Pair]s.
+ * Creates a Vavr [TreeSet] of the given elements.
227
228
* Note that the elements of a [TreeSet] must be [Comparable].
229
0 commit comments