Skip to content

Commit 8b23f52

Browse files
committed
Fixed the WTF Dokka+KoDEx TranslatorError for columnNames()
1 parent 833e514 commit 8b23f52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl/DataFrameImpl.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ internal open class DataFrameImpl<T>(cols: List<AnyCol>, val nrow: Int) :
9393

9494
override fun columns() = columns
9595

96-
override fun columnNames() = columns.map { it.name() }
96+
override fun columnNames(): List<String> = columns.map { it.name() }
9797

9898
override fun columnTypes() = columns.map { it.type() }
9999

0 commit comments

Comments
 (0)