Skip to content

Commit

Permalink
Typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
phbnf committed Aug 19, 2024
1 parent 1b5388a commit b176847
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion personalities/sctfe/ct_server_gcp/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
4 changes: 2 additions & 2 deletions personalities/sctfe/storage/gcp/map.go
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit b176847

Please sign in to comment.