Skip to content

Commit b4796fc

Browse files
fix: update backticks in KDocs for AccessAPIs links
1 parent 27ed014 commit b4796fc

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/associate.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import org.jetbrains.kotlinx.dataframe.documentation.AccessAPIs
1313
*
1414
* The [transform] is a [RowExpression] — a lambda that receives each [DataRow]
1515
* both as `this` and `it` and is expected to return a key, allowing you to compute keys directly from row values.
16-
* You can also use [extension properties][`Access APIs`.`Extension Properties API`] for concise and type-safe access.
16+
* You can also use [extension properties][AccessAPIs.`Extension Properties API`] for concise and type-safe access.
1717
*
1818
* If multiple rows produce the same key, the last row for that key is stored,
1919
* consistent with Kotlin's [kotlin.collections.associateBy] behavior.
@@ -39,7 +39,7 @@ public inline fun <T, V> DataFrame<T>.associateBy(transform: RowExpression<T, V>
3939
*
4040
* The [transform] is a [RowExpression] — a lambda that receives each [DataRow]
4141
* both as `this` and `it` and is expected to return a pair, allowing you to generate [Pair]s of keys and values from row contents.
42-
* You can also use [extension properties][`Access APIs`.`Extension Properties API`] for concise and type-safe access.
42+
* You can also use [extension properties][AccessAPIs.`Extension Properties API`] for concise and type-safe access.
4343
*
4444
* If multiple rows produce the same key, the last value for that key is stored,
4545
* consistent with Kotlin's [kotlin.collections.associate] behavior.

core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/colGroups.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public interface ColGroupsColumnsSelectionDsl {
6767
* Creates a subset of columns from [this\] that are [ColumnGroups][ColumnGroup].
6868
*
6969
* You can optionally use a [filter\] to only include certain columns.
70-
* [colGroups] can be called using any of the supported [APIs][`Access APIs`] (+ [ColumnPath]).
70+
* [colGroups] can be called using any of the supported [APIs][AccessAPIs] (+ [ColumnPath]).
7171
*
7272
* This function operates solely on columns at the top-level.
7373
*

core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/colsOfKind.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public interface ColsOfKindColumnsSelectionDsl {
7171
* Creates a subset of columns from [this\] that are of the given kind(s).
7272
*
7373
* You can optionally use a [filter\] to only include certain columns.
74-
* [colsOfKind] can be called using any of the supported [APIs][`Access APIs`] (+ [ColumnPath]).
74+
* [colsOfKind] can be called using any of the supported [APIs][AccessAPIs] (+ [ColumnPath]).
7575
*
7676
* This function operates solely on columns at the top-level.
7777
*

core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/frameCols.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public interface FrameColsColumnsSelectionDsl {
7070
* Creates a subset of columns from [this\] that are [FrameColumns][FrameColumn].
7171
*
7272
* You can optionally use a [filter\] to only include certain columns.
73-
* [frameCols] can be called using any of the supported [APIs][`Access APIs`] (+ [ColumnPath]).
73+
* [frameCols] can be called using any of the supported [APIs][AccessAPIs] (+ [ColumnPath]).
7474
*
7575
* This function operates solely on columns at the top-level.
7676
*

core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/valueCols.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public interface ValueColsColumnsSelectionDsl {
7070
* Creates a subset of columns from [this\] that are [ValueColumns][ValueColumn].
7171
*
7272
* You can optionally use a [filter\] to only include certain columns.
73-
* [valueCols] can be called using any of the supported [APIs][`Access APIs`] (+ [ColumnPath]).
73+
* [valueCols] can be called using any of the supported [APIs][AccessAPIs] (+ [ColumnPath]).
7474
*
7575
* This function operates solely on columns at the top-level.
7676
*

0 commit comments

Comments
 (0)