From b724f5a33865e296dfebf4b907ff1f7a0e808dba Mon Sep 17 00:00:00 2001 From: Mariano Cano Date: Fri, 14 Feb 2020 10:24:56 -0800 Subject: [PATCH] Fix typos. --- kms/softkms/softkms.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kms/softkms/softkms.go b/kms/softkms/softkms.go index b5ec6468..2316e87e 100644 --- a/kms/softkms/softkms.go +++ b/kms/softkms/softkms.go @@ -44,10 +44,10 @@ var generateKey = func(kty, crv string, size int) (interface{}, interface{}, err return keys.GenerateKeyPair(kty, crv, size) } -// SoftKSM is a key manager that uses keys stored in disk. +// SoftKMS is a key manager that uses keys stored in disk. type SoftKMS struct{} -// New returns a new SoftKSM. +// New returns a new SoftKMS. func New(ctx context.Context, opts apiv1.Options) (*SoftKMS, error) { return &SoftKMS{}, nil }