Skip to content

Commit fbe5dc7

Browse files
committed
Fixes to the documentation for the last and lastOrNull functions after review: removed redundant parentheses around include.
1 parent 102b56b commit fbe5dc7

File tree

1 file changed

+8
-8
lines changed
  • core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api

1 file changed

+8
-8
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public inline fun <T> DataColumn<T>.lastOrNull(predicate: (T) -> Boolean): T? =
108108
* Returns `null` if the [DataFrame] contains no rows matching the [predicate]
109109
* (including the case when the [DataFrame] is empty).
110110
*
111-
* {@include [RowFilterDescription]}
111+
* @include [RowFilterDescription]
112112
*
113113
* @include [SelectingColumns.ColumnGroupsAndNestedColumnsMention]
114114
*
@@ -138,7 +138,7 @@ public inline fun <T> DataFrame<T>.lastOrNull(predicate: RowFilter<T>): DataRow<
138138
/**
139139
* Returns the last [row][DataRow] in this [DataFrame] that satisfies the given [predicate].
140140
*
141-
* {@include [RowFilterDescription]}
141+
* @include [RowFilterDescription]
142142
*
143143
* @include [SelectingColumns.ColumnGroupsAndNestedColumnsMention]
144144
*
@@ -237,7 +237,7 @@ public fun <T, G> GroupBy<T, G>.last(): ReducedGroupBy<T, G> = reduce { lastOrNu
237237
* the corresponding row in [ReducedGroupBy] will contain `null` values for all columns in the group,
238238
* except the grouping key.
239239
*
240-
* {@include [RowFilterDescription]}
240+
* @include [RowFilterDescription]
241241
*
242242
* @include [SelectingColumns.ColumnGroupsAndNestedColumnsMention]
243243
*
@@ -289,7 +289,7 @@ public fun <T> Pivot<T>.last(): ReducedPivot<T> = reduce { lastOrNull() }
289289
*
290290
* For more information about [Pivot] with examples: {@include [DocumentationUrls.Pivot]}
291291
*
292-
* {@include [RowFilterDescription]}
292+
* @include [RowFilterDescription]
293293
*
294294
* @include [SelectingColumns.ColumnGroupsAndNestedColumnsMention]
295295
*
@@ -352,13 +352,13 @@ public fun <T> PivotGroupBy<T>.last(): ReducedPivotGroupBy<T> = reduce { lastOrN
352352
* in the resulting [ReducedPivotGroupBy] it will be represented by a [row][DataRow] with `null` values
353353
* (except the grouping key).
354354
*
355-
* {@include [DocumentationUrls.PivotGroupBy]}
355+
* @include [DocumentationUrls.PivotGroupBy]
356356
*
357-
* {@include [DocumentationUrls.Pivot]}
357+
* @include [DocumentationUrls.Pivot]
358358
*
359-
* {@include [DocumentationUrls.GroupBy]}
359+
* @include [DocumentationUrls.GroupBy]
360360
*
361-
* {@include [RowFilterDescription]}
361+
* @include [RowFilterDescription]
362362
*
363363
* @include [SelectingColumns.ColumnGroupsAndNestedColumnsMention]
364364
*

0 commit comments

Comments
 (0)