From 0b3fcfcf351fba9f29234976eeec4afb09ae2cc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Mon, 8 May 2023 11:47:28 +0200 Subject: [PATCH] quic: fix typo in endpoint.h PR-URL: https://github.com/nodejs/node/pull/47911 Reviewed-By: Moshe Atlow Reviewed-By: Yagiz Nizipli Reviewed-By: Deokjin Kim Reviewed-By: Darshan Sen --- 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_;