aboutsummaryrefslogtreecommitdiffhomepage
path: root/pingora-timeout
diff options
context:
space:
mode:
authorYuchen Wu <[email protected]>2024-03-01 11:51:14 -0800
committerYuchen Wu <[email protected]>2024-03-01 13:47:27 -0800
commit8160ad169878ea6b4884b977f2a96541083036c4 (patch)
tree3e0100f38369e96a7e27456230e1e841b021cd3f /pingora-timeout
parente8113822247b5f9bb4eab34cb10121b873e73fd1 (diff)
downloadpingora-8160ad169878ea6b4884b977f2a96541083036c4.tar.gz
pingora-8160ad169878ea6b4884b977f2a96541083036c4.zip
Fix typos and grammar issues
Co-authored-by: =?~~~?q?Ren=C3=A9=20Kla=C4=8Dan?= <[email protected]> Co-authored-by: 12932 <[email protected]> Co-authored-by: Alessandro <[email protected]> Co-authored-by: InImpasse <[email protected]> Co-authored-by: Paul James Cleary <[email protected]> Co-authored-by: Yang Hau <[email protected]> Co-authored-by: Morpheus <[email protected]> Co-authored-by: mobeicanyue <[email protected]> Co-authored-by: Twacqwq <[email protected]> Co-authored-by: Bobby <[email protected]> Co-authored-by: Dup4 <[email protected]> Co-authored-by: Josh Soref <[email protected]> Co-authored-by: Sheldon <[email protected]> Co-authored-by: houseme <[email protected]> Co-authored-by: ZhangIvan1 <[email protected]> Co-authored-by: GrahamQuan <[email protected]> Co-authored-by: =?~~~?q?Cristian=20Paul=20Pe=C3=B1aranda=20Rojas?= <[email protected]> Co-authored-by: Nathan Sit <[email protected]> Co-authored-by: David Lee <[email protected]> Co-authored-by: Mengliang Su <[email protected]> Co-authored-by: =?~~~?q?=EA=B9=80=EC=84=A0=EC=9A=B0?= <[email protected]> Co-authored-by: Allen Huang <[email protected]> Co-authored-by: Opacity <[email protected]> Co-authored-by: cris <[email protected]> Co-authored-by: Killian Ye <[email protected]> Co-authored-by: Jiwei-dev <[email protected]> Co-authored-by: Jinfeng Wang <[email protected]> Co-authored-by: Ikko Eltociear Ashimine <[email protected]>
Diffstat (limited to 'pingora-timeout')
-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.