Skip to content

Commit 8fd5e5c

Browse files
Update dsse/verify.go
Co-authored-by: Aditya Sirish <[email protected]>
1 parent db46322 commit 8fd5e5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dsse/verify.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ func (ev *envelopeVerifier) Verify(e *Envelope) ([]AcceptedKey, error) {
101101
}
102102

103103
if len(usedKeyids) < ev.threshold {
104-
return acceptedKeys, errors.New(fmt.Sprintf("Accepted signitures do not match threshold, Found: %d, Expected %d", len(acceptedKeys), ev.threshold))
104+
return acceptedKeys, errors.New(fmt.Sprintf("Accepted signatures do not match threshold, Found: %d, Expected %d", len(acceptedKeys), ev.threshold))
105105
}
106106

107107
return acceptedKeys, nil

0 commit comments

Comments
 (0)