Skip to content

Commit

Permalink
Fix grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
ryoqun committed Dec 13, 2023
1 parent b164f16 commit 923c9ef
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions unified-scheduler-pool/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,9 @@ impl<TH: TaskHandler> InstalledScheduler for PooledScheduler<TH> {
let (result, timings) =
result_with_timings.get_or_insert_with(|| (Ok(()), ExecuteTimings::default()));

// ... so, we're NOT scheduling at all; rather, just execute tx straight off. we doesn't
// need to solve inter-tx locking deps only in the case of single-thread fifo like this.
// ... so, we're NOT scheduling at all here; rather, just execute tx straight off. the
// inter-tx locking deps aren't needed to be resolved in the case of single-threaded FIFO
// like this.
if result.is_ok() {
TH::handle(
result,
Expand Down

0 comments on commit 923c9ef

Please sign in to comment.