From: Stephen Toub Date: Sat, 25 Apr 2020 01:09:26 +0000 (-0400) Subject: Fix typo in ManagedWebSocket comment X-Git-Tag: submit/tizen/20210909.063632~8380 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6db7579aaee85a22d1a90c0ba158ab6c68328a6e;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Fix typo in ManagedWebSocket comment --- 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.