From b176847c52f5db1a95549a7090180b78295e7a92 Mon Sep 17 00:00:00 2001 From: Philippe Boneff Date: Mon, 19 Aug 2024 15:54:15 +0000 Subject: [PATCH] Typo fixes --- personalities/sctfe/ct_server_gcp/main.go | 2 +- personalities/sctfe/storage/gcp/map.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/personalities/sctfe/ct_server_gcp/main.go b/personalities/sctfe/ct_server_gcp/main.go index 7180d1bc6..bc65cc736 100644 --- a/personalities/sctfe/ct_server_gcp/main.go +++ b/personalities/sctfe/ct_server_gcp/main.go @@ -295,7 +295,7 @@ func newGCPStorage(ctx context.Context, vCfg *sctfe.ValidatedLogConfig, signer n } tesseraStorage, err := gcpTessera.New(ctx, gcpCfg, tessera.WithCheckpointSignerVerifier(signer, nil)) if err != nil { - return nil, fmt.Errorf("Failed to initialize GCP Tesserea storage: %v", err) + return nil, fmt.Errorf("Failed to initialize GCP Tessera storage: %v", err) } issuerStorage, err := gcpMap.NewGCSStorage(ctx, cfg.ProjectId, cfg.Bucket, "fingerprints/", "application/pkix-cert") diff --git a/personalities/sctfe/storage/gcp/map.go b/personalities/sctfe/storage/gcp/map.go index 9ed37e2e9..9bead7105 100644 --- a/personalities/sctfe/storage/gcp/map.go +++ b/personalities/sctfe/storage/gcp/map.go @@ -1,4 +1,4 @@ -// Copyright 2016 Google LLC. All Rights Reserved. +// Copyright 2024 The Tessera authors. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -29,7 +29,7 @@ import ( "k8s.io/klog/v2" ) -// GCSStorage is a map backed by GCS on GCP. +// GCSStorage is a key value store backed by GCS on GCP. type GCSStorage struct { bucket *gcs.BucketHandle prefix string