Skip to content

Commit

Permalink
Fix comment typo in PipeOptions.cs (#79090)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephentoub committed Dec 1, 2022
1 parent fe85cd4 commit aa8fe36
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -38,10 +38,10 @@ public class 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

0 comments on commit aa8fe36

Please sign in to comment.