Skip to content

Commit ab1c086

Browse files
committed
Fix newlines and whitespace in comment
1 parent c88511f commit ab1c086

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

datafusion/physical-plan/src/execution_plan.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,9 +267,10 @@ pub trait ExecutionPlan: Debug + DisplayAs + Send + Sync {
267267
/// batch is superlinear. See this [general guideline][async-guideline] for more context
268268
/// on this point, which explains why one should avoid spending a long time without
269269
/// reaching an `await`/yield point in asynchronous runtimes.
270-
/// This can be achieved by manually returning [`Poll::Pending`] and setting up wakers appropriately, or the use of [`tokio::task::yield_now()`] when appropriate.
270+
/// This can be achieved by manually returning [`Poll::Pending`] and setting up wakers
271+
/// appropriately, or the use of [`tokio::task::yield_now()`] when appropriate.
271272
/// In special cases that warrant manual yielding, determination for "regularly" may be
272-
/// made using a timer (being careful with the overhead-heavy system call needed to
273+
/// made using a timer (being careful with the overhead-heavy system call needed to
273274
/// take the time), or by counting rows or batches.
274275
///
275276
/// The cancellation benchmark tracks some cases of how quickly queries can

0 commit comments

Comments
 (0)