Skip to content

Commit 660d64f

Browse files
committed
Merge branch 'master' into aomarks-typescript
2 parents 5190a89 + ee4445f commit 660d64f

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

lib/elements/array-selector.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@
211211

212212
/**
213213
* Clears the selection state.
214-
* @returns {void}
214+
* @return {void}
215215
*/
216216
clearSelection() {
217217
// Unbind previous selection

lib/elements/dom-bind.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -61,19 +61,19 @@
6161
this.__children = null;
6262
}
6363

64-
/** @returns {void} */
64+
/** @return {void} */
6565
attributeChangedCallback() {
6666
// assumes only one observed attribute
6767
this.mutableData = true;
6868
}
6969

70-
/** @returns {void} */
70+
/** @return {void} */
7171
connectedCallback() {
7272
this.style.display = 'none';
7373
this.render();
7474
}
7575

76-
/** @returns {void} */
76+
/** @return {void} */
7777
disconnectedCallback() {
7878
this.__removeChildren();
7979
}

lib/elements/dom-module.html

+4-2
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,10 @@
7575
}
7676

7777
/**
78-
* @param {string} name
79-
* @returns {void}
78+
* @param {string} name Name of attribute.
79+
* @param {?string} old Old value of attribute.
80+
* @param {?string} value Current value of attribute.
81+
* @return {void}
8082
*/
8183
attributeChangedCallback(name, old, value) {
8284
if (old !== value) {

lib/legacy/legacy-element-mixin.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@
134134
* @param {string} name Name of attribute.
135135
* @param {?string} old Old value of attribute.
136136
* @param {?string} value Current value of attribute.
137-
* @returns {void}
137+
* @return {void}
138138
* @override
139139
*/
140140
attributeChangedCallback(name, old, value) {

0 commit comments

Comments
 (0)