Skip to content

Commit aa8fe36

Browse files
authored
Fix comment typo in PipeOptions.cs (#79090)
1 parent fe85cd4 commit aa8fe36

File tree

1 file changed

+2
-2
lines changed
  • src/libraries/System.IO.Pipelines/src/System/IO/Pipelines

1 file changed

+2
-2
lines changed

src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeOptions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ public PipeOptions(
3838
// to let users specify the maximum buffer size, so we pick a reasonable number based on defaults. They can influence
3939
// how much gets buffered by increasing the minimum segment size.
4040

41-
// With a defaukt segment size of 4K this maps to 16K
41+
// With a default segment size of 4K this maps to 16K
4242
InitialSegmentPoolSize = 4;
4343

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

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

0 commit comments

Comments
 (0)