diff --git a/libraries/stdlib/src/kotlin/collections/MapsJVM.kt b/libraries/stdlib/src/kotlin/collections/MapsJVM.kt index 41fad88f2bd..33f01fd967d 100644 --- a/libraries/stdlib/src/kotlin/collections/MapsJVM.kt +++ b/libraries/stdlib/src/kotlin/collections/MapsJVM.kt @@ -15,7 +15,7 @@ public fun MutableMap.set(key: K, value: V): V? = put(key, value) * * @includeFunctionBody ../../test/collections/MapTest.kt toSortedMap */ -public fun Map.toSortedMap(): SortedMap = TreeMap(this) +public fun Map.toSortedMap(): SortedMap = TreeMap(this) /** * Converts this [[Map]] to a [[SortedMap]] using the given *comparator* so that iteration order will be in the order