From 1862fdf9e223cbd40cd3e8cb64843835b65ec9ae Mon Sep 17 00:00:00 2001 From: Christian Schwarz Date: Tue, 21 Jan 2025 19:01:22 +0100 Subject: [PATCH] clean up doc comment --- pageserver/src/tenant/storage_layer.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pageserver/src/tenant/storage_layer.rs b/pageserver/src/tenant/storage_layer.rs index 682fb2afa6..52a72d5fad 100644 --- a/pageserver/src/tenant/storage_layer.rs +++ b/pageserver/src/tenant/storage_layer.rs @@ -466,9 +466,9 @@ impl IoConcurrency { /// /// We will move away from opaque IO futures towards well-defined IOs at some point in /// the future when we have shipped this first version of concurrent IO to production - /// and are ready to retire the Serial mode which runs the futures in place. + /// and are ready to retire the Sequential mode which runs the futures in place. /// Right now, while brittle, the opaque IO approach allows us to ship the feature - /// with minimal changes to the code and minimal changes to existing behavior in Serial mode. + /// with minimal changes to the code and minimal changes to existing behavior in Sequential mode. /// /// Also read the comment in `collect_pending_ios`. pub(crate) async fn spawn_io(&mut self, fut: F)