Skip to content

Commit

Permalink
Fix comment typo
Browse files Browse the repository at this point in the history
  • Loading branch information
crabbly committed Feb 17, 2021
1 parent c854447 commit 4cb9038
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/html.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function cloneElement (element, params) {
// Loop over and process the children elements / nodes (including text nodes)
const childNodesArray = Array.prototype.slice.call(element.childNodes)
for (let i = 0; i < childNodesArray.length; i++) {
// Check if we are skiping the current element
// Check if we are skipping the current element
if (params.ignoreElements.indexOf(childNodesArray[i].id) !== -1) {
continue
}
Expand Down

0 comments on commit 4cb9038

Please sign in to comment.