From 035a968bddcadcbfeff02efa7ccf1f5d9b69f149 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sat, 6 Apr 2024 00:43:13 +0900 Subject: [PATCH] chore: fix typo (#6464) --- tokio/src/runtime/metrics/worker.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/runtime/metrics/worker.rs b/tokio/src/runtime/metrics/worker.rs index b53a86bcc..cefe4d2ab 100644 --- a/tokio/src/runtime/metrics/worker.rs +++ b/tokio/src/runtime/metrics/worker.rs @@ -44,7 +44,7 @@ pub(crate) struct WorkerMetrics { /// current-thread scheduler. pub(crate) queue_depth: AtomicUsize, - /// If `Some`, tracks the the number of polls by duration range. + /// If `Some`, tracks the number of polls by duration range. pub(super) poll_count_histogram: Option, }