Skip to content

Commit

Permalink
spelling: effective
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoref committed Sep 7, 2017
1 parent aa35d77 commit 139edd0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/legacy/legacy-element-mixin.html
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@
* any `<content>` elements are replaced with the list of nodes distributed
* to the `<content>`, the result of its `getDistributedNodes` method.
* @this {Element}
* @return {Array<Node>} List of effctive child nodes.
* @return {Array<Node>} List of effective child nodes.
*/
getEffectiveChildNodes() {
return /** @type {Polymer.DomApi} */ (Polymer.dom(this)).getEffectiveChildNodes();
Expand All @@ -500,7 +500,7 @@
* any `<content>` elements are replaced with the list of elements
* distributed to the `<content>`.
*
* @return {Array<Node>} List of effctive children.
* @return {Array<Node>} List of effective children.
*/
getEffectiveChildren() {
let list = this.getEffectiveChildNodes();
Expand All @@ -514,7 +514,7 @@
* text content's of the element's effective childNodes (the elements
* returned by <a href="#getEffectiveChildNodes>getEffectiveChildNodes</a>.
*
* @return {string} List of effctive children.
* @return {string} List of effective children.
*/
getEffectiveTextContent() {
let cn = this.getEffectiveChildNodes();
Expand Down

0 comments on commit 139edd0

Please sign in to comment.