From 0052828ebb48de9ad46d40c334b8030c6f94ceeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Sun, 7 May 2023 23:05:46 +0000 Subject: [PATCH] quic: fix typo in endpoint.h --- src/quic/endpoint.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quic/endpoint.h b/src/quic/endpoint.h index 37d764977ad208..d02a2a3d9a9360 100644 --- a/src/quic/endpoint.h +++ b/src/quic/endpoint.h @@ -453,7 +453,7 @@ class Endpoint final : public AsyncWrap, public Packet::Listener { // maps for this rather than one to avoid creating a whole bunch of // BaseObjectPtr references. The primary map (sessions_) just maps // the original CID to the Session, the second map (dcid_to_scid_) - // maps the additional CIDs to the the primary. + // maps the additional CIDs to the primary. CID::Map> sessions_; CID::Map dcid_to_scid_; StatelessResetToken::Map token_map_;