Skip to content

Commit 90dab34

Browse files
committed
remove 404 link
1 parent 63fdb46 commit 90dab34

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/StardustDocs/topics/gradleReference.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@ Note than name of the file and the interface are normalized: split by '_' and '
1414
You can set parsing options for CSV:
1515
```kotlin
1616
dataframes {
17-
// output: build/generated/dataframe/main/kotlin/org/example/dataframe/Securities.Generated.kt
17+
// output: build/generated/dataframe/main/kotlin/org/example/dataframe/JetbrainsRepositories.Generated.kt
1818
schema {
19-
data = "https://raw.githubusercontent.com/Kotlin/dataframe/1765966904c5920154a4a480aa1fcff23324f477/data/securities.csv"
19+
data = "https://raw.githubusercontent.com/Kotlin/dataframe/master/data/jetbrains_repositories.csv"
2020
csvOptions {
21-
delimiter = ';'
21+
delimiter = ','
2222
}
2323
}
2424
}
2525
```
26-
In this case output path will depend on your directory structure. For project with package `org.example` path will be `build/generated/dataframe/main/kotlin/org/example/dataframe/Securities.Generated.kt
26+
In this case output path will depend on your directory structure. For project with package `org.example` path will be `build/generated/dataframe/main/kotlin/org/example/dataframe/JetbrainsRepositories.Generated.kt
2727
`. Note that name of the Kotlin file is derived from the name of the data file with the suffix `.Generated` and the package
28-
is derived from the directory structure with child directory `dataframe`. The name of the **data schema** itself is `Securities`. You could specify it explicitly:
28+
is derived from the directory structure with child directory `dataframe`. The name of the **data schema** itself is `JetbrainsRepositories`. You could specify it explicitly:
2929
```kotlin
3030
schema {
3131
// output: build/generated/dataframe/main/kotlin/org/example/dataframe/MyName.Generated.kt

0 commit comments

Comments
 (0)