aboutsummaryrefslogtreecommitdiffhomepage
path: root/pingora-timeout/src/fast_timeout.rs
diff options
context:
space:
mode:
Diffstat (limited to 'pingora-timeout/src/fast_timeout.rs')
-rw-r--r--pingora-timeout/src/fast_timeout.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/pingora-timeout/src/fast_timeout.rs b/pingora-timeout/src/fast_timeout.rs
index 5fa7a3d..e5e3643 100644
--- a/pingora-timeout/src/fast_timeout.rs
+++ b/pingora-timeout/src/fast_timeout.rs
@@ -20,7 +20,7 @@
//! - Timeout timers are rounded to the next 10ms tick and timers are shared across all timeouts with the same deadline.
//!
//! In order for this to work, a standalone thread is created to arm the timers, which has its
-//! overheads. As a general rule, the benefits of this doesn't outweight the overhead unless
+//! overheads. As a general rule, the benefits of this doesn't outweigh the overhead unless
//! there are more than about 100/s timeout() calls in the system. Use regular tokio timeout or
//! [super::tokio_timeout] in the low usage case.