Skip to content

Commit bb07505

Browse files
committed
Fix typo
1 parent 71e3310 commit bb07505

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Sources/SparkConnect/DataFrame.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -735,15 +735,15 @@ public actor DataFrame: Sendable {
735735

736736
/// Groups the ``DataFrame`` using the specified columns, so we can run aggregation on them.
737737
/// - Parameter cols: Grouping column names.
738-
/// - Returns:A ``GroupData``.
738+
/// - Returns:A ``GroupedData``.
739739
public func groupBy(_ cols: String...) -> GroupedData {
740740
return GroupedData(self, GroupType.groupby, cols)
741741
}
742742

743743
/// Create a multi-dimensional rollup for the current Dataset using the specified columns, so we
744744
/// can run aggregation on them.
745745
/// - Parameter cols: Grouping column names.
746-
/// - Returns:A ``GroupData``.
746+
/// - Returns:A ``GroupedData``.
747747
public func rollup(_ cols: String...) -> GroupedData {
748748
return GroupedData(self, GroupType.rollup, cols)
749749
}
@@ -752,7 +752,7 @@ public actor DataFrame: Sendable {
752752
/// can run aggregation on them. See [[RelationalGroupedDataset]] for all the available aggregate
753753
/// functions.
754754
/// - Parameter cols: Grouping column names.
755-
/// - Returns:A ``GroupData``.
755+
/// - Returns:A ``GroupedData``.
756756
public func cube(_ cols: String...) -> GroupedData {
757757
return GroupedData(self, GroupType.cube, cols)
758758
}

0 commit comments

Comments
 (0)