Skip to content

Commit

Permalink
Fix typo in SseParser (#102993)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephentoub committed Jun 3, 2024
1 parent 6dabbd1 commit c6bfb06
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ private void ShiftOrGrowLineBufferIfNecessary()
// there's no newline in the data that's there). Otherwise, if the whole
// buffer is full, grow the buffer to accommodate more data, since, again,
// what's there doesn't contain a newline and thus a line is longer than
// the current buffer accomodates.
// the current buffer accommodates.
if (_lineOffset + _lineLength == _lineBuffer.Length)
{
if (_lineOffset != 0)
Expand Down

0 comments on commit c6bfb06

Please sign in to comment.