Skip to content

Commit 1299446

Browse files
rename docs improve
1 parent 2772684 commit 1299446

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/StardustDocs/topics/rename.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ df.rename("age").into {
6363
A special case of `rename` that renames all column names in a DataFrame to "camelCase" format.
6464

6565
This function standardizes column names by converting them from various naming styles—such as "snake_case",
66-
"PascalCase", "kebab-case", or "space delimited formats" into a consistent "camelCase form".
66+
"PascalCase", "kebab-case", or "space delimited formats" into a consistent "camelCase" form.
6767

6868
The transformation follows Kotlin naming conventions for variables and properties, making the resulting
6969
column names idiomatic and easier to use in Kotlin code, which is especially useful
70-
in extension properties usage.
70+
in [extension properties usage](extensionPropertiesApi.md).
7171

7272
Use it right after loading raw data to normalize column names into a consistent format.
7373
This is especially helpful when preparing the data for further transformations, column access,

0 commit comments

Comments
 (0)