Merge pull request #181 from gbbr/spellfix

Correct spelling in PipeConfig {Input,Output}BufferSize doc.
This commit is contained in:
Kevin Parsons
2020-11-23 13:18:15 -08:00
committed by GitHub
+2 -2
View File
@@ -429,10 +429,10 @@ type PipeConfig struct {
// when the pipe is in message mode.
MessageMode bool
// InputBufferSize specifies the size the input buffer, in bytes.
// InputBufferSize specifies the size of the input buffer, in bytes.
InputBufferSize int32
// OutputBufferSize specifies the size the input buffer, in bytes.
// OutputBufferSize specifies the size of the output buffer, in bytes.
OutputBufferSize int32
}