Skip to content

Commit

Permalink
spelling: omit
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoref committed Sep 7, 2017
1 parent ea0acb0 commit e3b04e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/mixins/property-effects.html
Original file line number Diff line number Diff line change
Expand Up @@ -2399,7 +2399,7 @@
if (parts) {
// Initialize the textContent with any literal parts
// NOTE: default to a space here so the textNode remains; some browsers
// (IE) evacipate an empty textNode following cloneNode/importNode.
// (IE) omit an empty textNode following cloneNode/importNode.
node.textContent = literalFromParts(parts) || ' ';
addBinding(this, templateInfo, nodeInfo, 'text', 'textContent', parts);
noted = true;
Expand Down
2 changes: 1 addition & 1 deletion test/unit/property-effects.html
Original file line number Diff line number Diff line change
Expand Up @@ -1179,7 +1179,7 @@

test('compound adjacent textNode bindings', function() {
// The single space is due to the gambit to prevent empty text nodes
// from being evacipated on IE during importNode from the template; it will
// from being omitted by IE during importNode from the template; it will
// only be there the when in the virgin state after cloning the template
assert.equal(el.$.compound1.textContent, ' ');
el.cpnd2 = 'cpnd2';
Expand Down

0 comments on commit e3b04e5

Please sign in to comment.