From b973bb9916f459f647948730eea39ff19da9e17d Mon Sep 17 00:00:00 2001 From: Mark Stosberg Date: Wed, 16 Jun 2021 14:41:09 -0400 Subject: [PATCH] typo fix --- src/node-saml/saml.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node-saml/saml.ts b/src/node-saml/saml.ts index 20145384..098c8034 100644 --- a/src/node-saml/saml.ts +++ b/src/node-saml/saml.ts @@ -721,7 +721,7 @@ class SAML { const transforms = xpath.selectElements(currentNode, xpathTransformQuery); // Reject also XMLDSIG with more than 2 Transform if (transforms.length > 2) { - // do not return false, throw an error so that it can be catched by tests differently + // do not return false, throw an error so that it can be caught by tests differently throw new Error("Invalid signature, too many transforms"); }