From f5d3b51f6eb7d50e65484f1b4c05e2114f476684 Mon Sep 17 00:00:00 2001 From: Paulo Gustavo Veiga Date: Sat, 22 Sep 2012 21:12:20 -0300 Subject: [PATCH] Fix typo. --- core-js/src/main/javascript/Utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core-js/src/main/javascript/Utils.js b/core-js/src/main/javascript/Utils.js index daf5591b..9db008e4 100644 --- a/core-js/src/main/javascript/Utils.js +++ b/core-js/src/main/javascript/Utils.js @@ -55,7 +55,7 @@ core.Utils.createDocument = function () { } else if (window.document.implementation && window.document.implementation.createDocument) { doc = window.document.implementation.createDocument("", "", null); } - $asser(doc, "Parser could not be instantiated"); + $assert(doc, "Parser could not be instantiated"); return doc; }; \ No newline at end of file