Skip to content

Commit 9fdd5e3

Browse files
committed
updated from master
1 parent 5bf8463 commit 9fdd5e3

File tree

1 file changed

+1
-1
lines changed
  • core/generated-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public fun <T> DataFrame<T>.renameToCamelCase(): DataFrame<T> = this
6060

6161
// convert all first chars of all columns to the lowercase
6262
.rename {
63-
allDfs()
63+
cols { !it.isColumnGroup() }.recursively()
6464
}.into {
6565
it.name.replaceFirstChar { it.lowercaseChar() }
6666
}

0 commit comments

Comments
 (0)