1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2025-09-09 02:09:38 +02:00

Fix typo in error message

This commit is contained in:
Paul Schaub 2025-07-23 11:25:31 +02:00
parent 9b0a3cd4c7
commit 0d807cb6b8
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -478,7 +478,7 @@ class SecretKeyRingEditor(
val prevBinding =
inspectKeyRing(secretKeyRing).getCurrentSubkeyBindingSignature(keyId)
?: throw NoSuchElementException(
"Previous subkey binding signaure for ${keyId.openPgpKeyId()} MUST NOT be null.")
"Previous subkey binding signature for ${keyId.openPgpKeyId()} MUST NOT be null.")
val bindingSig = reissueSubkeyBindingSignature(subkey, expiration, protector, prevBinding)
secretKeyRing = injectCertification(secretKeyRing, subkey, bindingSig)
}