From ba4d9ed93aaf7a700f2acb2aaef3e613ba663f95 Mon Sep 17 00:00:00 2001 From: nigriMSFT Date: Thu, 7 Dec 2023 11:18:06 -0800 Subject: [PATCH] Fix some code comment spelling (#3990) --- src/inc/quic_datapath.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/inc/quic_datapath.h b/src/inc/quic_datapath.h index 044c79c9dd..e12e3ff5c2 100644 --- a/src/inc/quic_datapath.h +++ b/src/inc/quic_datapath.h @@ -54,7 +54,7 @@ typedef enum CXPLAT_ECN_TYPE { } CXPLAT_ECN_TYPE; // -// Helper to get the ECN type from the Type of Service field of recieved data. +// Helper to get the ECN type from the Type of Service field of received data. // #define CXPLAT_ECN_FROM_TOS(ToS) (CXPLAT_ECN_TYPE)((ToS) & 0x3) @@ -584,7 +584,7 @@ CxPlatSocketCreateTcpListener( ); // -// Deletes a socket. This function blocks on all outstandind upcalls and on +// Deletes a socket. This function blocks on all outstanding upcalls and on // return guarantees no further callbacks will occur. DO NOT call this function // on an upcall! //