Skip to content

Commit ba11711

Browse files
committed
Rollback parameter name to keep compatibility with the compiler plugin
1 parent bbf31c3 commit ba11711

File tree

1 file changed

+3
-3
lines changed
  • core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api

1 file changed

+3
-3
lines changed

core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/explode.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,16 +69,16 @@ internal interface ExplodeDocs
6969
*
7070
* @param dropEmpty If `true`, removes rows with empty lists or DataFrames.
7171
* If `false`, such rows will be exploded into `null` values.
72-
* @param columns The [ColumnsSelector] used to select columns to explode.
72+
* @param selector The [ColumnsSelector] used to select columns to explode.
7373
* If not specified, all applicable columns will be exploded.
7474
* @return A new [DataFrame] with exploded columns.
7575
*/
7676
@Refine
7777
@Interpretable("Explode0")
7878
public fun <T> DataFrame<T>.explode(
7979
dropEmpty: Boolean = true,
80-
columns: ColumnsSelector<T, *> = defaultExplodeColumns,
81-
): DataFrame<T> = explodeImpl(dropEmpty, columns)
80+
selector: ColumnsSelector<T, *> = defaultExplodeColumns,
81+
): DataFrame<T> = explodeImpl(dropEmpty, selector)
8282

8383
/**
8484
* {@include [ExplodeDocs]}

0 commit comments

Comments
 (0)