Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in SseParser #102993

Merged
merged 1 commit into from
Jun 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading