From 6db7579aaee85a22d1a90c0ba158ab6c68328a6e Mon Sep 17 00:00:00 2001 From: Stephen Toub Date: Fri, 24 Apr 2020 21:09:26 -0400 Subject: [PATCH] Fix typo in ManagedWebSocket comment --- src/libraries/Common/src/System/Net/WebSockets/ManagedWebSocket.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/Common/src/System/Net/WebSockets/ManagedWebSocket.cs b/src/libraries/Common/src/System/Net/WebSockets/ManagedWebSocket.cs index 437c6ea..a8f1c63 100644 --- a/src/libraries/Common/src/System/Net/WebSockets/ManagedWebSocket.cs +++ b/src/libraries/Common/src/System/Net/WebSockets/ManagedWebSocket.cs @@ -709,7 +709,7 @@ namespace System.Net.WebSockets null, null); } - // Otherwise, read as much of the payload as we can efficiently, and upate the header to reflect how much data + // Otherwise, read as much of the payload as we can efficiently, and update the header to reflect how much data // remains for future reads. We first need to copy any data that may be lingering in the receive buffer // into the destination; then to minimize ReceiveAsync calls, we want to read as much as we can, stopping // only when we've either read the whole message or when we've filled the payload buffer. -- 2.7.4