Code typo fix

This commit is contained in:
2024-12-14 14:44:36 +01:00
parent 2b659d8e44
commit 2627c91202

View File

@@ -42,7 +42,7 @@ function getAllDocuments () {
let childNodes = rootNode.childNodes;
childNodes.forEach((childNode) => {
// If the elements are documents they should not have an id.
if (childNode.getAttibute("id") === null) {
if (childNode.getAttribute("id") === null) {
let child = childNode.firstChild;
allDocuments.push(child);
}