Skip to content

Commit 3cfb8e7

Browse files
structure fixes
1 parent 4e767f6 commit 3cfb8e7

File tree

4 files changed

+5
-33
lines changed

4 files changed

+5
-33
lines changed

docs/StardustDocs/d.tree

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,7 @@
2222
<toc-element topic="gettingStartedGradleAdvanced.md"/>
2323
</toc-element>
2424
<toc-element topic="concepts.md">
25-
<toc-element topic="apiLevels.md">
26-
<toc-element topic="stringApi.md"/>
27-
<toc-element topic="extensionPropertiesApi.md"/>
28-
</toc-element>
25+
<toc-element topic="apiLevels.md"/>
2926
<toc-element topic="types.md">
3027
<toc-element topic="DataFrame.md"/>
3128
<toc-element topic="DataColumn.md"/>
@@ -43,10 +40,11 @@
4340
<toc-element topic="schemasImportSqlGradle.md"/>
4441
<toc-element topic="schemasImportOpenApiGradle.md"/>
4542
<toc-element topic="schemasImportOpenApiJupyter.md"/>
46-
<toc-element topic="DataSchemaGenerationMethods.md"/>
4743
<toc-element topic="DataSchemaGenerationGradle.md"/>
4844
</toc-element>
4945
</toc-element>
46+
<toc-element topic="extensionPropertiesApi.md"/>
47+
<toc-element topic="DataSchemaGenerationMethods.md"/>
5048
<toc-element topic="Compiler-Plugin.md">
5149
<toc-element topic="staticInterpretation.md"/>
5250
<toc-element topic="dataSchema.md"/>

docs/StardustDocs/topics/concepts/apiLevels.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ In the Kotlin DataFrame library, we provide two different ways to access columns
1616

1717
Here's a list of all APIs in order of increasing safety.
1818

19-
* [**String API**](stringApi.md) <br/>
19+
* **String API** <br/>
2020
Columns are accessed by `string` representing their name. Type-checking is done at runtime, name-checking too.
2121

2222
* [**Extension Properties API**](extensionPropertiesApi.md) <br/>
@@ -80,7 +80,7 @@ The `titanic.csv` file can be found [here](https://github.com/Kotlin/dataframe/b
8080

8181
# Comparing APIs
8282

83-
The [String API](stringApi.md) is the simplest and unsafest of them all. The main advantage of it is that it can be
83+
The String API is the simplest and unsafest of them all. The main advantage of it is that it can be
8484
used at any time, including when accessing new columns in chain calls. So we can write something like:
8585

8686
```kotlin

docs/StardustDocs/topics/concepts/stringApi.md

Lines changed: 0 additions & 26 deletions
This file was deleted.
File renamed without changes.

0 commit comments

Comments
 (0)