Skip to content

Commit bad26fc

Browse files
committed
Fixes to the KDoc of the tests for the count function
1 parent 27bc449 commit bad26fc

File tree

1 file changed

+10
-10
lines changed
  • core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/api

1 file changed

+10
-10
lines changed

core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/api/count.kt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,25 @@ import org.junit.BeforeClass
99
import org.junit.Test
1010

1111
/**
12-
* Tests the behavior of the `count` function across different DataFrame structures:
12+
* Tests the behavior of the [count] function across different [DataFrame] structures:
1313
*
14-
* - **[DataColumn]**: counting all elements or elements matching a predicate,
14+
* - [DataColumn]: counting all elements or elements matching a predicate,
1515
* including behavior on empty columns and columns with `null` values.
1616
*
17-
* - **[DataRow]**: counting elements or elements matching a predicate,
17+
* - [DataRow]: counting elements or elements matching a predicate,
1818
* including rows containing `null` values.
1919
*
20-
* - **[DataFrame]**: counting all rows or rows matching a predicate in this [DataFrame],
21-
* including behavior on empty data frames and data frames with `null` values.
20+
* - [DataFrame]: counting all rows or rows matching a predicate in this [DataFrame],
21+
* including behavior on empty DataFrames and DataFrames with `null` values.
2222
*
23-
* - **[GroupBy]**: counting rows per group in the [GroupBy], with and without a predicate,
24-
* including behavior on grouped empty DataFrame and groups with `null` values.
23+
* - [GroupBy]: counting rows per group in the [GroupBy], with and without a predicate,
24+
* including behavior on grouped empty [DataFrame] and groups with `null` values.
2525
*
26-
* - **[Pivot]**: counting rows in each group of the [Pivot],
26+
* - [Pivot]: counting rows in each group of the [Pivot],
2727
* including handling of `null` values and predicates.
2828
*
29-
* - **[PivotGroupBy]**: counting rows in each combined [pivot] + [groupBy] group,
30-
* with and without predicates, including handling of empty and `null` groups.
29+
* - [PivotGroupBy]: counting rows in each combined [pivot] + [groupBy] group,
30+
* with and without predicates, including handling of `null` values and predicates.
3131
*/
3232
class CountTests {
3333

0 commit comments

Comments
 (0)