Skip to content

Commit d4e54c7

Browse files
committed
spelling: element
1 parent 139edd0 commit d4e54c7

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1984,7 +1984,7 @@ The following notable changes have been made since the 2.0 Preview announcement.
19841984

19851985
- Typo in Polymer.mixin API documentation [\#2001](https://github.com/Polymer/polymer/issues/2001)
19861986

1987-
- Low-level changes for `iron-list` integration (`fire` & `modelForElemennt`) [\#2003](https://github.com/Polymer/polymer/issues/2003)
1987+
- Low-level changes for `iron-list` integration (`fire` & `modelForElement`) [\#2003](https://github.com/Polymer/polymer/issues/2003)
19881988

19891989
- Normalized event difference with ShadowDOM and Shady [\#1921](https://github.com/Polymer/polymer/issues/1921)
19901990

test/unit/property-effects.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -638,8 +638,8 @@
638638
test('handle notifcation event and set property with observer when connected', function() {
639639
var el = document.createElement('x-handle-notify-event');
640640
document.body.appendChild(el);
641-
assert.ok(el.shadowRoot.querySelector('#before'), 'element not found before default notifying elmeent');
642-
assert.ok(el.shadowRoot.querySelector('#later'), 'element not found after default notifying elmeent');
641+
assert.ok(el.shadowRoot.querySelector('#before'), 'element not found before default notifying element');
642+
assert.ok(el.shadowRoot.querySelector('#later'), 'element not found after default notifying element');
643643
assert.isTrue(el.readySpy.calledOnce, 'ready called more than once');
644644
assert.isTrue(el.handleNotify.calledOnce, 'listener called more than once');
645645
assert.isTrue(el.propChanged.calledOnce, 'observer called more than once');
@@ -652,8 +652,8 @@
652652
test('handle notifcation event and set property with observer when *not* connected and _enableProperties called', function() {
653653
var el = document.createElement('x-handle-notify-event');
654654
el._enableProperties();
655-
assert.ok(el.shadowRoot.querySelector('#before'), 'element not found before default notifying elmeent');
656-
assert.ok(el.shadowRoot.querySelector('#later'), 'element not found after default notifying elmeent');
655+
assert.ok(el.shadowRoot.querySelector('#before'), 'element not found before default notifying element');
656+
assert.ok(el.shadowRoot.querySelector('#later'), 'element not found after default notifying element');
657657
assert.isTrue(el.readySpy.calledOnce, 'ready called more than once');
658658
assert.isTrue(el.handleNotify.calledOnce, 'listener called more than once');
659659
assert.isTrue(el.propChanged.calledOnce, 'observer called more than once');

0 commit comments

Comments
 (0)