From 489accac2edf4f3f860b1a7b889e6c5eb0f2b056 Mon Sep 17 00:00:00 2001 From: Matt Keeter Date: Wed, 4 Sep 2024 12:59:15 -0400 Subject: [PATCH] Fix outdated comment (#1447) --- upstairs/src/upstairs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upstairs/src/upstairs.rs b/upstairs/src/upstairs.rs index 67bf36806..95d9964ab 100644 --- a/upstairs/src/upstairs.rs +++ b/upstairs/src/upstairs.rs @@ -942,7 +942,7 @@ impl Upstairs { self.deferred_ops.push_immediate(DeferredBlockOp::Other(op)); } // Otherwise, we can apply a non-write operation immediately, saving - // a trip through the FuturesUnordered + // a trip through the DeferredQueue _ => { self.apply_guest_request_inner(op); }