Skip to content

Commit 56c48fd

Browse files
committed
fix: correct typo in verification error message
1 parent 41faa18 commit 56c48fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xmldsig-verifier.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ export class XmlDSigVerifier {
206206
}
207207

208208
const errorMessage =
209-
error instanceof Error ? error.message : `Verification error occured: ${String(error)}`;
209+
error instanceof Error ? error.message : `Verification error occurred: ${String(error)}`;
210210

211211
return {
212212
success: false,

0 commit comments

Comments
 (0)