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 comment typo in PipeOptions.cs #79090

Merged
merged 1 commit into from
Dec 1, 2022
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 @@ -38,10 +38,10 @@ public PipeOptions(
// to let users specify the maximum buffer size, so we pick a reasonable number based on defaults. They can influence
// how much gets buffered by increasing the minimum segment size.

// With a defaukt segment size of 4K this maps to 16K
// With a default segment size of 4K this maps to 16K
InitialSegmentPoolSize = 4;

// With a defaukt segment size of 4K this maps to 1MB. If the pipe has large segments this will be bigger than 1MB...
// With a default segment size of 4K this maps to 1MB. If the pipe has large segments this will be bigger than 1MB...
MaxSegmentPoolSize = 256;

// By default, we'll throttle the writer at 64K of buffered data
Expand Down