KT-72028 Fix IndexedValue properties order in KDoc

^KT-72028 Fixed


Merge-request: KT-MR-23382
Merged-by: Filipp Zhinkin <filipp.zhinkin@jetbrains.com>
diff --git a/libraries/stdlib/src/kotlin/collections/IndexedValue.kt b/libraries/stdlib/src/kotlin/collections/IndexedValue.kt
index e001c9e..ee41b12 100644
--- a/libraries/stdlib/src/kotlin/collections/IndexedValue.kt
+++ b/libraries/stdlib/src/kotlin/collections/IndexedValue.kt
@@ -8,7 +8,7 @@
 /**
  * Data class representing a value from a collection or sequence, along with its index in that collection or sequence.
  *
- * @property value the underlying value.
  * @property index the index of the value in the collection or sequence.
+ * @property value the underlying value.
  */
 public data class IndexedValue<out T>(public val index: Int, public val value: T)