Skip to content

Commit 051fe40

Browse files
committed
adjust doc comment
Signed-off-by: Andrew Thornton <[email protected]>
1 parent 37ffc85 commit 051fe40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/git/utils_pipe.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,12 +228,12 @@ func NewPipePairs(n int) (PipePairs, error) {
228228

229229
type PipePairs []*PipePair
230230

231-
// Close closes the PipePairs
231+
// Close closes the pipe pairs
232232
func (pairs PipePairs) Close() error {
233233
return pairs.CloseWithError(nil)
234234
}
235235

236-
// CloseWithError closes the pipe pair
236+
// CloseWithError closes the pipe pairs
237237
func (pairs PipePairs) CloseWithError(err error) error {
238238
for _, p := range pairs {
239239
_ = p.closeRead(err)

0 commit comments

Comments
 (0)