From d4e54c72328fe18de8e82042b0b24147bde0d22a Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Thu, 7 Sep 2017 04:18:13 +0000 Subject: [PATCH] spelling: element --- CHANGELOG.md | 2 +- test/unit/property-effects.html | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1a06befea..cb67fb0e6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1984,7 +1984,7 @@ The following notable changes have been made since the 2.0 Preview announcement. - Typo in Polymer.mixin API documentation [\#2001](https://github.com/Polymer/polymer/issues/2001) -- Low-level changes for `iron-list` integration (`fire` & `modelForElemennt`) [\#2003](https://github.com/Polymer/polymer/issues/2003) +- Low-level changes for `iron-list` integration (`fire` & `modelForElement`) [\#2003](https://github.com/Polymer/polymer/issues/2003) - Normalized event difference with ShadowDOM and Shady [\#1921](https://github.com/Polymer/polymer/issues/1921) diff --git a/test/unit/property-effects.html b/test/unit/property-effects.html index bae8126a4d..a43e9783eb 100644 --- a/test/unit/property-effects.html +++ b/test/unit/property-effects.html @@ -638,8 +638,8 @@ test('handle notifcation event and set property with observer when connected', function() { var el = document.createElement('x-handle-notify-event'); document.body.appendChild(el); - assert.ok(el.shadowRoot.querySelector('#before'), 'element not found before default notifying elmeent'); - assert.ok(el.shadowRoot.querySelector('#later'), 'element not found after default notifying elmeent'); + assert.ok(el.shadowRoot.querySelector('#before'), 'element not found before default notifying element'); + assert.ok(el.shadowRoot.querySelector('#later'), 'element not found after default notifying element'); assert.isTrue(el.readySpy.calledOnce, 'ready called more than once'); assert.isTrue(el.handleNotify.calledOnce, 'listener called more than once'); assert.isTrue(el.propChanged.calledOnce, 'observer called more than once'); @@ -652,8 +652,8 @@ test('handle notifcation event and set property with observer when *not* connected and _enableProperties called', function() { var el = document.createElement('x-handle-notify-event'); el._enableProperties(); - assert.ok(el.shadowRoot.querySelector('#before'), 'element not found before default notifying elmeent'); - assert.ok(el.shadowRoot.querySelector('#later'), 'element not found after default notifying elmeent'); + assert.ok(el.shadowRoot.querySelector('#before'), 'element not found before default notifying element'); + assert.ok(el.shadowRoot.querySelector('#later'), 'element not found after default notifying element'); assert.isTrue(el.readySpy.calledOnce, 'ready called more than once'); assert.isTrue(el.handleNotify.calledOnce, 'listener called more than once'); assert.isTrue(el.propChanged.calledOnce, 'observer called more than once');