Skip to content

Commit c6bfb06

Browse files
authored
Fix typo in SseParser (#102993)
1 parent 6dabbd1 commit c6bfb06

File tree

1 file changed

+1
-1
lines changed
  • src/libraries/System.Net.ServerSentEvents/src/System/Net/ServerSentEvents

1 file changed

+1
-1
lines changed

src/libraries/System.Net.ServerSentEvents/src/System/Net/ServerSentEvents/SseParser_1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ private void ShiftOrGrowLineBufferIfNecessary()
280280
// there's no newline in the data that's there). Otherwise, if the whole
281281
// buffer is full, grow the buffer to accommodate more data, since, again,
282282
// what's there doesn't contain a newline and thus a line is longer than
283-
// the current buffer accomodates.
283+
// the current buffer accommodates.
284284
if (_lineOffset + _lineLength == _lineBuffer.Length)
285285
{
286286
if (_lineOffset != 0)

0 commit comments

Comments
 (0)