From 997ba4ce17505fb4f937daf6072a77f4f8df765a Mon Sep 17 00:00:00 2001 From: Roko Romic Date: Sat, 25 Mar 2023 11:10:36 +0100 Subject: [PATCH] fix: method comments to correct type Signed-off-by: Roko Romic --- pkg/helper/gcp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/helper/gcp.go b/pkg/helper/gcp.go index fb920533..0b9740f2 100644 --- a/pkg/helper/gcp.go +++ b/pkg/helper/gcp.go @@ -34,7 +34,7 @@ func (c *gcsClient) Upload(body *bytes.Buffer, key string) error { return writer.Close() } -// NewGCSClient creates a new S3.client to send Results to S3 +// NewGCSClient creates a new GCS.client to send Results to GCS Bucket func NewGCSClient(ctx context.Context, credentials, bucket string) GCPClient { cred, err := google.CredentialsFromJSON(ctx, []byte(credentials), storage.ScopeReadWrite) if err != nil {