Skip to content

Commit b439919

Browse files
committed
comment fix
1 parent fc83336 commit b439919

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

core/generated-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/ColumnsSelectionDsl.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ public interface ColumnsSelectionDsl<out T> : /* SingleColumn<DataRow<T>> */
102102
ColsAtAnyDepthColumnsSelectionDsl,
103103
// colsInGroups {}, colsInGroups()
104104
ColsInGroupsColumnsSelectionDsl,
105-
// take(5), takeLastChildren(2), takeLastWhile {}, takeChildrenWhile {}
105+
// take(5), takeLastCols(2), takeLastWhile {}, takeColsWhile {}
106106
TakeColumnsSelectionDsl,
107-
// drop(5), dropLastChildren(2), dropLastWhile {}, dropChildrenWhile {}
107+
// drop(5), dropLastCols(2), dropLastWhile {}, dropColsWhile {}
108108
DropColumnsSelectionDsl,
109109

110110
// select {}, TODO due to String.invoke conflict this cannot be moved out of ColumnsSelectionDsl

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ public interface ColumnsSelectionDsl<out T> : /* SingleColumn<DataRow<T>> */
8383
ColsAtAnyDepthColumnsSelectionDsl,
8484
// colsInGroups {}, colsInGroups()
8585
ColsInGroupsColumnsSelectionDsl,
86-
// take(5), takeLastChildren(2), takeLastWhile {}, takeChildrenWhile {}
86+
// take(5), takeLastCols(2), takeLastWhile {}, takeColsWhile {}
8787
TakeColumnsSelectionDsl,
88-
// drop(5), dropLastChildren(2), dropLastWhile {}, dropChildrenWhile {}
88+
// drop(5), dropLastCols(2), dropLastWhile {}, dropColsWhile {}
8989
DropColumnsSelectionDsl,
9090

9191
// select {}, TODO due to String.invoke conflict this cannot be moved out of ColumnsSelectionDsl

0 commit comments

Comments
 (0)