Skip to content

Commit

Permalink
Update doc comment
Browse files Browse the repository at this point in the history
Signed-off-by: Jeff Mendoza <[email protected]>
  • Loading branch information
jeffmendoza committed Aug 22, 2024
1 parent 78179ff commit 73b6264
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/publish/recorder.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
)

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

// NewRecorder wraps the provided publish.Interface in an implementation that
// records publish results to an io.Writer.
// records publish results to a file.
func NewRecorder(inner Interface, name string) (Interface, error) {
return &recorder{
inner: inner,
Expand Down

0 comments on commit 73b6264

Please sign in to comment.