Skip to content

Commit 3f7fcb6

Browse files
committed
renamed incorrect vararg function argument other -> others
1 parent 7271809 commit 3f7fcb6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -552,8 +552,8 @@ public interface AllExceptColumnsSelectionDsl {
552552
* @include [ColumnGroupDocs.ColumnPathArgs]
553553
*/
554554
@Interpretable("ColumnGroupAllColsExceptColumnPaths")
555-
public fun SingleColumn<DataRow<*>>.allColsExcept(vararg other: ColumnPath): ColumnSet<*> =
556-
allColsExceptInternal(other.toColumnSet())
555+
public fun SingleColumn<DataRow<*>>.allColsExcept(vararg others: ColumnPath): ColumnSet<*> =
556+
allColsExceptInternal(others.toColumnSet())
557557

558558
// endregion
559559

0 commit comments

Comments
 (0)