Skip to content

Commit 4bb9b15

Browse files
authored
Merge pull request #545 from Kotlin/docs-updates
Docs updates
2 parents ff20e53 + 8135a45 commit 4bb9b15

File tree

4 files changed

+64
-25
lines changed

4 files changed

+64
-25
lines changed

.space.kts

Lines changed: 0 additions & 20 deletions
This file was deleted.

docs/StardustDocs/cfg/buildprofiles.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<buildprofiles xsi:noNamespaceSchemaLocation="https://resources.jetbrains.com/writerside/1.0/build-profiles.xsd"
44
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
55
<variables>
6+
<header-logo>kotlin-logo.svg</header-logo>
67
<web-root>https://kotlin.github.io/dataframe/</web-root>
78
<download-page/>
89
<feedback-widget>false</feedback-widget>
Lines changed: 58 additions & 0 deletions
Loading

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)