We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7521de commit 31bf4b1Copy full SHA for 31bf4b1
pkg/publish/recorder.go
@@ -28,7 +28,7 @@ import (
28
)
29
30
// recorder wraps a publisher implementation in a layer that recordes the published
31
-// references to an io.Writer.
+// references to a file.
32
type recorder struct {
33
inner Interface
34
fileName string
@@ -39,7 +39,7 @@ type recorder struct {
39
var _ Interface = (*recorder)(nil)
40
41
// NewRecorder wraps the provided publish.Interface in an implementation that
42
-// records publish results to an io.Writer.
+// records publish results to a file.
43
func NewRecorder(inner Interface, name string) (Interface, error) {
44
return &recorder{
45
inner: inner,
0 commit comments