We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0896186 commit 8ba8dc2Copy full SHA for 8ba8dc2
Sources/SparkConnect/DataFrame.swift
@@ -221,7 +221,7 @@ public actor DataFrame: Sendable {
221
return DataFrame(spark: self.spark, plan: SparkConnectClient.getLimit(self.plan.root, n))
222
}
223
224
- /// Chec if the ``DataFrame`` is empty and returns a boolean value.
+ /// Checks if the ``DataFrame`` is empty and returns a boolean value.
225
/// - Returns: `true` if the ``DataFrame`` is empty, `false` otherwise.
226
public func isEmpty() async throws -> Bool {
227
return try await select().limit(1).count() == 0
0 commit comments