Skip to content

Commit 12c2306

Browse files
committed
Minor fixes for the docs
1 parent 0dbbcf8 commit 12c2306

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/StardustDocs/topics/Compiler-Plugin.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ Add this line to `gradle.properties`:
5555
```properties
5656
kotlin.incremental=false
5757
```
58+
59+
`Sync` the project.
5860

5961
Disabling incremental compilation will no longer be necessary
6062
when https://youtrack.jetbrains.com/issue/KT-66735 is resolved.

docs/StardustDocs/topics/dataSchema.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# @DataSchema declarations
22

3-
`DataSchema` can be used as an argument for cast and convertTo functions.
3+
`DataSchema` can be used as an argument for [cast](cast.md) and [convertTo](convertTo.md) functions.
44
It provides typed data access for raw dataframes you read from I/O sources and serves as a starting point for the compiler plugin to derive schema changes.
55

66
Example 1:
@@ -182,5 +182,3 @@ data class Name(
182182
val url = "https://raw.githubusercontent.com/Kotlin/dataframe/refs/heads/master/data/participants.json"
183183
val df = DataFrame.readJson(url).cast<Group>()
184184
```
185-
186-

docs/StardustDocs/topics/staticInterpretation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ Compiler plugin aims to cover all functions where the result of the operation de
7373
In the library, such functions are annotated with `@Refine` or `@Interpretable`.
7474

7575
There are functions that are not supported:
76-
`pivot`, `parse`, `read`, `ColumnSelectionDsl.filter`, etc. — operations where the resulting schema depends on data, so it's out of the scope
77-
`gather`, `split`, `implode`, some CS DSL functions — they will be supported in the future release
76+
- `pivot`, `parse`, `read`, `ColumnSelectionDsl.filter`, etc. — operations where the resulting schema depends on data, so it's out of the scope
77+
- `gather`, `split`, `implode`, some CS DSL functions — they will be supported in the future release
7878

7979
In Gradle projects it means that sometimes you'd need to provide [data schema](dataSchema.md) or fall back to String API.
8080

0 commit comments

Comments
 (0)