Skip to content

Commit e3b04e5

Browse files
committed
spelling: omit
1 parent ea0acb0 commit e3b04e5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/mixins/property-effects.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2399,7 +2399,7 @@
23992399
if (parts) {
24002400
// Initialize the textContent with any literal parts
24012401
// NOTE: default to a space here so the textNode remains; some browsers
2402-
// (IE) evacipate an empty textNode following cloneNode/importNode.
2402+
// (IE) omit an empty textNode following cloneNode/importNode.
24032403
node.textContent = literalFromParts(parts) || ' ';
24042404
addBinding(this, templateInfo, nodeInfo, 'text', 'textContent', parts);
24052405
noted = true;

test/unit/property-effects.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1179,7 +1179,7 @@
11791179

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

0 commit comments

Comments
 (0)