Skip to content

Commit 5d14f95

Browse files
committed
Fix kdoc typos
1 parent 92c2ff4 commit 5d14f95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/kotlin/io/vavr/kotlin/Collections.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ fun <T> Array<T>.toVavrSet():
177177
HashSet<T> = HashSet.ofAll(this.asIterable())
178178

179179
/**
180-
* Converts a Kotlin [Sequence] into a Vavr [List].
180+
* Converts a Kotlin [Sequence] into a Vavr [Set].
181181
*
182182
* @see HashSet.ofAll
183183
*/
@@ -223,7 +223,7 @@ fun <T> Sequence<T>.toVavrLinkedHashSet():
223223
LinkedHashSet<T> = LinkedHashSet.ofAll(this.asIterable())
224224

225225
/**
226-
* Creates a Vavr [TreeSet] from a series of Kotlin [Pair]s.
226+
* Creates a Vavr [TreeSet] of the given elements.
227227
*
228228
* Note that the elements of a [TreeSet] must be [Comparable].
229229
*

0 commit comments

Comments
 (0)