From 8d9de57ae459285c1a63bbb0a0f50e131c4a11eb Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Wed, 5 Jun 2024 11:43:36 -0400 Subject: [PATCH] checkpoint: fix a typo Signed-off-by: William Woodruff --- sigstore/_internal/rekor/checkpoint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sigstore/_internal/rekor/checkpoint.py b/sigstore/_internal/rekor/checkpoint.py index a02c3cbb2..87ac48381 100644 --- a/sigstore/_internal/rekor/checkpoint.py +++ b/sigstore/_internal/rekor/checkpoint.py @@ -130,7 +130,7 @@ def from_text(cls, text: str) -> SignedNote: separator: str = "\n\n" if text.count(separator) != 1: raise VerificationError( - "note must contain one blank line, deliniating the text from the signature block" + "note must contain one blank line, delineating the text from the signature block" ) split = text.index(separator)