From 923c9eff3bb5deaa3cf981a58ae1fecdb1df7f95 Mon Sep 17 00:00:00 2001 From: Ryo Onodera Date: Wed, 13 Dec 2023 10:05:48 +0900 Subject: [PATCH] Fix grammar --- unified-scheduler-pool/src/lib.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/unified-scheduler-pool/src/lib.rs b/unified-scheduler-pool/src/lib.rs index 9c37adb8590ac7..e60f1cad31aac3 100644 --- a/unified-scheduler-pool/src/lib.rs +++ b/unified-scheduler-pool/src/lib.rs @@ -250,8 +250,9 @@ impl InstalledScheduler for PooledScheduler { 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,