Skip to content

Commit

Permalink
spelling: initial
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoref committed Sep 7, 2017
1 parent 8bda7f9 commit 3862ce0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/unit/flattened-nodes-observer.html
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@

suite('observeNodes', function() {

test('observe intial state of distributing element', function() {
test('observe initial state of distributing element', function() {
var recordedA;
var el = document.querySelector('test-slot');
var observer1 = new Polymer.FlattenedNodesObserver(el, function(info) {
Expand All @@ -229,7 +229,7 @@
observer2.disconnect();
});

test('observe intial state of non-distributing element', function() {
test('observe initial state of non-distributing element', function() {
var recordedA;
var el = document.querySelector('test-static');
var observer1 = new Polymer.FlattenedNodesObserver(el, function(info) {
Expand Down
4 changes: 2 additions & 2 deletions test/unit/polymer-dom-observeNodes.html
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@

suite('observeNodes', function() {

test('observe intial state of distributing element', function() {
test('observe initial state of distributing element', function() {
var recordedA;
var el = document.querySelector('test-slot');
var observer1 = Polymer.dom(el).observeNodes(function(info) {
Expand All @@ -212,7 +212,7 @@
Polymer.dom(el).unobserveNodes(observer2);
});

test('observe intial state of non-distributing element', function() {
test('observe initial state of non-distributing element', function() {
var recordedA;
var el = document.querySelector('test-static');
var observer1 = Polymer.dom(el).observeNodes(function(info) {
Expand Down

0 comments on commit 3862ce0

Please sign in to comment.