Skip to content

Commit 8bc936f

Browse files
several topics fixes
1 parent ba442a1 commit 8bc936f

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/StardustDocs/topics/extensionPropertiesApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ df.filter { name.startsWith("A") && info.age >= 16 }
147147
Moreover, new extensions will be generated on-the-fly after each schema change:
148148
by changing any column [name](rename.md),
149149
or [type](convert.md) or [add](add.md) a new one.
150-
For example, rename the "name" column into "firstName" and then we can use `firstName` extensions
150+
For example, rename the `name` column into "firstName" and then we can use `firstName` extensions
151151
in the following operations:
152152

153153
```kotlin

docs/StardustDocs/topics/guides/Guides-And-Examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Explore our structured, in-depth guides to steadily improve your Kotlin DataFram
2424

2525
<img src="quickstart_preview.png" border-effect="rounded" width="705"/>
2626

27-
* [](extensionPropertiesApi.md) — learn about extension properties for `DataFrame`
27+
* [](extensionPropertiesApi.md) — learn about extension properties for [`DataFrame`](DataFrame.md)
2828
and make working with your data both convenient and type-safe.
2929

3030
* [Enhanced Column Selection DSL](https://blog.jetbrains.com/kotlin/2024/07/enhanced-column-selection-dsl-in-kotlin-dataframe/)

docs/StardustDocs/topics/guides/quickstart.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ columns.
8888
Column selectors are widely used across operations — one of the simplest examples is `.select { }`, which returns a new
8989
DataFrame with only the columns chosen in Columns Selection expression.
9090

91-
After executing the cell where a `DataFrame` variable is declared,
91+
*After executing the cell* where a `DataFrame` variable is declared,
9292
[extension properties](extensionPropertiesApi.md) for its columns are automatically generated.
9393
These properties can then be used in the Columns Selection DSL expression for typesafe and convenient column access.
9494

@@ -111,13 +111,13 @@ dfSelected
111111
112112
## Row Filtering
113113

114-
Some operations use [DataRow API](DataRow.md), with expressions and conditions
114+
Some operations use the [DataRow API](DataRow.md), with expressions and conditions
115115
that apply for all `DataFrame` rows.
116-
For example, `.filter { }` that returns a new `DataFrame` with rows \
117-
that satisfy a condition given by row expression.
116+
For example, `.filter { }` that returns a new `DataFrame` with rows that satisfy a condition given by row expression.
118117

119118
Inside a row expression, you can access the values of the current row by column names through auto-generated properties.
120-
Similar to the Columns Selection DSL, but in this case the properties represent actual values, not column references.
119+
Similar to the [Columns Selection DSL](ColumnSelectors.md),
120+
but in this case the properties represent actual values, not column references.
121121

122122
Filter rows by "stargazers_count" value:
123123

0 commit comments

Comments
 (0)