Skip to content

Commit 31bf4b1

Browse files
committed
Update doc comment
Signed-off-by: Jeff Mendoza <[email protected]>
1 parent b7521de commit 31bf4b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/publish/recorder.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
)
2929

3030
// recorder wraps a publisher implementation in a layer that recordes the published
31-
// references to an io.Writer.
31+
// references to a file.
3232
type recorder struct {
3333
inner Interface
3434
fileName string
@@ -39,7 +39,7 @@ type recorder struct {
3939
var _ Interface = (*recorder)(nil)
4040

4141
// NewRecorder wraps the provided publish.Interface in an implementation that
42-
// records publish results to an io.Writer.
42+
// records publish results to a file.
4343
func NewRecorder(inner Interface, name string) (Interface, error) {
4444
return &recorder{
4545
inner: inner,

0 commit comments

Comments
 (0)