Skip to content

Commit e7784ed

Browse files
Automated commit of generated code
1 parent 7c090b4 commit e7784ed

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/StardustDocs/topics/createDataFrame.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,8 @@ Its data schema defines the column that can be used right after the conversion f
145145

146146
```kotlin
147147
val names = listOf("Alice", "Bob", "Charlie")
148-
val df: DataFrame<ValueProperty<String>> = names.toDataFrame()
148+
// TODO fix with plugin???
149+
val df = names.toDataFrame() as DataFrame<ValueProperty<String>>
149150
df.add("length") { value.length }
150151
```
151152

0 commit comments

Comments
 (0)