From 5db36fe4ee7228631f382d6dedd49f1002f6ef7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=9D=E5=80=89=E6=B0=B4=E5=B8=8C?= Date: Sun, 15 Feb 2026 18:50:13 +0800 Subject: [PATCH] docs: fix typo in EndpointStats --- quinn/src/endpoint.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/quinn/src/endpoint.rs b/quinn/src/endpoint.rs index 923cee59a..b8e648ecc 100644 --- a/quinn/src/endpoint.rs +++ b/quinn/src/endpoint.rs @@ -351,13 +351,13 @@ impl Endpoint { #[non_exhaustive] #[derive(Debug, Default, Copy, Clone)] pub struct EndpointStats { - /// Cummulative number of Quic handshakes accepted by this [Endpoint] + /// Cumulative number of Quic handshakes accepted by this [Endpoint] pub accepted_handshakes: u64, - /// Cummulative number of Quic handshakees sent from this [Endpoint] + /// Cumulative number of Quic handshakes sent from this [Endpoint] pub outgoing_handshakes: u64, - /// Cummulative number of Quic handshakes refused on this [Endpoint] + /// Cumulative number of Quic handshakes refused on this [Endpoint] pub refused_handshakes: u64, - /// Cummulative number of Quic handshakes ignored on this [Endpoint] + /// Cumulative number of Quic handshakes ignored on this [Endpoint] pub ignored_handshakes: u64, }