From 87a19c69dc6fa1e86a4ded9e5a21affca7fdc536 Mon Sep 17 00:00:00 2001 From: Jeff Mendoza Date: Thu, 22 Aug 2024 15:08:03 -0700 Subject: [PATCH] Update doc comment Signed-off-by: Jeff Mendoza --- pkg/publish/recorder.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/publish/recorder.go b/pkg/publish/recorder.go index d12068d4a..e2915d08c 100644 --- a/pkg/publish/recorder.go +++ b/pkg/publish/recorder.go @@ -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 @@ -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,