From 97bc5da05b19263264e79679e3f872980381948d Mon Sep 17 00:00:00 2001 From: Louis-Dominique Dubeau Date: Thu, 23 Aug 2018 18:43:57 -0400 Subject: [PATCH] fix: correct typo --- lib/saxes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/saxes.js b/lib/saxes.js index 83577e93..071cd63f 100644 --- a/lib/saxes.js +++ b/lib/saxes.js @@ -1228,7 +1228,7 @@ class SaxesParser { (cx) => { if (cx !== GREATER && !isS(cx) && cx !== FORWARD_SLASH) { if (!isNameChar(cx)) { - this.fail("disallowed characer in tag name."); + this.fail("disallowed character in tag name."); } return true;