From a67f26815d67b3e7879c458a7b6fc48e0cb60c8e Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 16 Nov 2023 13:09:48 -0800 Subject: [PATCH] pkg/verify: Fix "suffient" -> "sufficient" Godoc typo Typo slipped in when the file was created in c43c2cb208 (Create a resuable verify package for image release verification, 2020-07-16, #837). --- pkg/verify/verify.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/verify/verify.go b/pkg/verify/verify.go index 805a3381cf..fabbaf6f3b 100644 --- a/pkg/verify/verify.go +++ b/pkg/verify/verify.go @@ -29,7 +29,7 @@ import ( // in this package uses the container signature format defined at https://github.com/containers/image // to authenticate that a given release image digest has been signed by a trusted party. type Interface interface { - // Verify should return nil if the provided release digest has suffient signatures to be considered + // Verify should return nil if the provided release digest has sufficient signatures to be considered // valid. It should return an error in all other cases. Verify(ctx context.Context, releaseDigest string) error