@@ -9,25 +9,25 @@ import org.junit.BeforeClass
99import 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 */
3232class CountTests {
3333
0 commit comments