Skip to content

Commit 8ba8dc2

Browse files
Update Sources/SparkConnect/DataFrame.swift
Co-authored-by: Liang-Chi Hsieh <[email protected]>
1 parent 0896186 commit 8ba8dc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/SparkConnect/DataFrame.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ public actor DataFrame: Sendable {
221221
return DataFrame(spark: self.spark, plan: SparkConnectClient.getLimit(self.plan.root, n))
222222
}
223223

224-
/// Chec if the ``DataFrame`` is empty and returns a boolean value.
224+
/// Checks if the ``DataFrame`` is empty and returns a boolean value.
225225
/// - Returns: `true` if the ``DataFrame`` is empty, `false` otherwise.
226226
public func isEmpty() async throws -> Bool {
227227
return try await select().limit(1).count() == 0

0 commit comments

Comments
 (0)