Browse Source

fix: typo

Moritz Johner 5 years ago
parent
commit
5677372c97

+ 1 - 1
pkg/controllers/externalsecret/externalsecret_controller_test.go

@@ -226,7 +226,7 @@ var _ = Describe("ExternalSecret controller", func() {
 	})
 
 	// TODO:
-	// * do not find store
+	// * missing store
 	// * missing store provider
 	// * provider client constructor error
 	// * getproviderSecretData error

+ 1 - 1
pkg/provider/aws/secretsmanager/secretsmanager.go

@@ -38,7 +38,7 @@ type SecretsManager struct {
 }
 
 // SMInterface is a subset of the smiface api.
-// see" https://docs.aws.amazon.com/sdk-for-go/api/service/secretsmanager/secretsmanageriface/
+// see: https://docs.aws.amazon.com/sdk-for-go/api/service/secretsmanager/secretsmanageriface/
 type SMInterface interface {
 	GetSecretValue(*awssm.GetSecretValueInput) (*awssm.GetSecretValueOutput, error)
 }