Fix typo.

This commit is contained in:
Paulo Gustavo Veiga 2012-09-22 21:12:20 -03:00
parent ff63b4f89c
commit f5d3b51f6e

View File

@ -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;
};