Skip to content

Commit ddb4aac

Browse files
committed
fix docs
1 parent b805c5c commit ddb4aac

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/StardustDocs/topics/gradle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ get enums, correct inheritance and overall better type safety.
124124

125125
First of all, you will need the extra dependency:
126126

127-
```kts
127+
```kotlin
128128
implementation("org.jetbrains.kotlinx:dataframe-openapi:$dataframe_version")
129129
```
130130

docs/StardustDocs/topics/schemas.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,13 +242,13 @@ do this in Jupyter notebooks. There is only a slight difference in notation:
242242

243243
Import the schema using any path (`String`), `URL`, or `File`:
244244

245-
```kts
245+
```kotlin
246246
val PetStore = importDataSchema("https://petstore3.swagger.io/api/v3/openapi.json")
247247
```
248248

249249
and then from next cell you run and onwards, you can call, for example:
250250

251-
```kts
251+
```kotlin
252252
val df = PetStore.Pet.readJson("https://petstore3.swagger.io/api/v3/pet/findByStatus?status=available")
253253
```
254254

0 commit comments

Comments
 (0)