From fb3ae0a254f1cb9f0e548059cbf55d3aac8c90f2 Mon Sep 17 00:00:00 2001 From: Joan Antoni RE Date: Thu, 7 Sep 2023 21:16:52 +0200 Subject: [PATCH] docs: fix worker_overflow_count (#5988) --- tokio/src/runtime/metrics/runtime.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/runtime/metrics/runtime.rs b/tokio/src/runtime/metrics/runtime.rs index 95b517c94eb..66a3e51bb97 100644 --- a/tokio/src/runtime/metrics/runtime.rs +++ b/tokio/src/runtime/metrics/runtime.rs @@ -474,7 +474,7 @@ impl RuntimeMetrics { /// /// This metric only applies to the **multi-threaded** scheduler. /// - /// The worker steal count starts at zero when the runtime is created and + /// The worker overflow count starts at zero when the runtime is created and /// increases by one each time the worker attempts to schedule a task /// locally, but its local queue is full. When this happens, half of the /// local queue is moved to the injection queue.