From 03fe44c10302fdb55c29dbe5b08d4f8769c80272 Mon Sep 17 00:00:00 2001 From: LIParadise <26545710+LIParadise@users.noreply.github.com> Date: Tue, 24 Feb 2026 23:30:53 +0800 Subject: [PATCH] runtime: fix `event_interval` doc (#7932) --- tokio/src/runtime/builder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/runtime/builder.rs b/tokio/src/runtime/builder.rs index e50b33763..aea4de750 100644 --- a/tokio/src/runtime/builder.rs +++ b/tokio/src/runtime/builder.rs @@ -1116,7 +1116,7 @@ impl Builder { /// Setting the event interval determines the effective "priority" of delivering /// these external events (which may wake up additional tasks), compared to /// executing tasks that are currently ready to run. A smaller value is useful - /// when tasks frequently spend a long time in polling, or frequently yield, + /// when tasks frequently spend a long time in polling, or infrequently yield, /// which can result in overly long delays picking up I/O events. Conversely, /// picking up new events requires extra synchronization and syscall overhead, /// so if tasks generally complete their polling quickly, a higher event interval